* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

/* Header */
.site-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e30613;
}

.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 250px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 10;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
}

.sub-menu .menu-item-has-children .sub-menu {
    left: 100%;
    top: 0;
}

.client-access {
    position: relative;
}

.access-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 10;
}

.client-access:hover .access-dropdown {
    opacity: 1;
    visibility: visible;
}

.access-dropdown h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background: #e30613;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.forgot-password {
    text-align: center;
    margin-top: 10px;
}

.forgot-password a {
    color: #e30613;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://consultoriaempresarialmendoza.com/Images/FondoHeader.webp');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero .btn {
    display: inline-block;
    padding: 18px 45px;
    background: #e30613;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.hero .btn:hover {
    background: #b3050f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Marquee */
.marquee-section {
    background: #04274b;
    padding: 15px 0;
    color: #fff;
}

marquee {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

/* Services */
.services-section,
.clients-section,
.news-container,
.about-intro,
.training-grid,
.service-detail-section,
.strategy-container,
.hr-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.services-grid,
.clients-carousel,
.testimonials-grid,
.news-grid,
.team-grid,
.pillars-grid,
.market-grid,
.training-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.clients-carousel {
    grid-template-columns: repeat(5, 1fr);
}

.testimonials-grid,
.team-grid,
.pillars-grid {
    grid-template-columns: repeat(3, 1fr);
}

.news-grid {
    grid-template-columns: repeat(4, 1fr);
}

.market-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

/* Cards */
.service-card,
.client-card,
.testimonial-card,
.news-card,
.team-card,
.pillar-card,
.market-card,
.training-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover,
.news-card:hover,
.training-item:hover,
.pillar-card:hover {
    transform: translateY(-5px);
}

.service-card a {
    display: block;
    position: relative;
    height: 300px;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.service-card:hover .service-bg {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.service-overlay h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Clients */
.client-card {
    border: 3px solid #04274b;
    border-radius: 20px;
    background: #D3D3D3;
}

.client-header {
    background: #04274b;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.client-projects {
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.client-description {
    padding: 0 10px 10px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.client-location {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #eee;
}

/* Botones */
.btn-secondary,
.btn-employment,
.filter-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #04274b;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: #333;
}

.btn-employment {
    background: #04274b;
    color: #fff;
    font-size: 14px;
}

.btn-employment:hover {
    background: transparent;
    color: #04274b;
}

.btn-secondary:hover,
.filter-btn:hover,
.filter-btn.active {
    background: #04274b;
    color: #fff;
}

.filter-btn {
    background: transparent;
    color: #04274b;
    border-radius: 50px;
}

.btn-center {
    text-align: center;
    margin-top: 40px;
}

/* News Section */
.news-section {
    background: #f5f5f5;
    padding: 30px 0;
    width: 100%;
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-badge {
    display: inline-block;
    background: #e30613;
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-left h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.footer-form textarea {
    height: 100px;
}

.footer-form button {
    padding: 12px 30px;
    background: #e30613;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.contact-info {
    list-style: none;
    margin-bottom: 20px;
    text-align: right;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e30613;
}

.copyright {
    grid-column: span 2;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
}

/* Form Messages */
.form-mensaje {
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.mensaje-exito {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mensaje-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mensaje-cargando {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter & Search */
.filter-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-box {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    display: block;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.news-card.hidden {
    display: none;
}

/* About Page */
.about-intro {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-section {
    background: #f5f5f5;
    padding: 60px 20px;
}

.team-img {
    height: 250px;
    background: #ddd;
    background-size: cover;
    background-position: center;
}

.team-info h4 {
    margin: 15px 0 5px;
    color: #04274b;
}

.team-info p {
    color: #e30613;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

/* Process Steps */
.process-steps {
    background: #04274b;
    color: #fff;
    padding: 60px 20px;
    margin: 40px 0;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-card {
    padding: 20px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e30613;
    margin-bottom: 10px;
    opacity: 0.5;
}

.step-icon {
    background: #e30613;
    color: white;
    padding: 10px 18px;
    border-radius: 50%;
    font-weight: bold;
}

/* Service Pages */
.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.service-intro img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    background: #f5f5f5;
    padding: 30px;
    border-left: 5px solid #e30613;
    border-radius: 5px;
}

.benefit-item h4 {
    color: #04274b;
    margin-bottom: 10px;
}

/* Strategy Page */
.strategy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.quote-box {
    background: #f4f4f4;
    padding: 40px;
    border-left: 10px solid #e30613;
    margin: 50px 0;
    font-style: italic;
    font-size: 20px;
}

/* Market Page */
.highlight-text {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
}

/* Marketing Page */
.mkt-services {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mkt-list {
    list-style: none;
}

.mkt-list li {
    padding: 20px;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.mkt-list li span {
    color: #e30613;
    font-size: 24px;
    font-weight: bold;
}

.mkt-image img {
    width: 100%;
    border-radius: 15px;
}

.results-bar {
    background: #04274b;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

/* Brand Page */
.brand-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    background: #04274b;
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-box h3 {
    color: #e30613;
    margin-bottom: 10px;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

/* HR Page */
.hr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hr-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 15px 15px 0px #e30613;
}

.methodology {
    background: #f9f9f9;
    padding: 50px 20px;
    margin-top: 40px;
    border-radius: 15px;
}

.method-list {
    list-style: none;
    margin-top: 20px;
}

.method-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.method-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e30613;
    font-weight: bold;
}

/* Training Page */
.training-item {
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 10px;
    background: #fff;
}

.training-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.training-item h3 {
    color: #04274b;
    margin-bottom: 15px;
    border-bottom: 2px solid #e30613;
    display: inline-block;
    padding-bottom: 5px;
}

.cta-training {
    background: #f4f4f4;
    text-align: center;
    padding: 60px 20px;
}

/* Centro PyME */
.page-header {
    background: linear-gradient(135deg, #04274b 0%, #0a3a6b 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.tabs-container {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.tab-btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.tab-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.tab-btn.active {
    background: #04274b;
    color: white;
    border-color: #04274b;
}

.tab-btn[data-tab="empresa"]:hover { border-color: #04274b; }
.tab-btn[data-tab="aprender"]:hover { border-color: #e30613; }
.tab-btn[data-tab="empleos"]:hover { border-color: #00a86b; }

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #e30613;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-section {
    background: #f8f9fa;
    padding: 50px 0;
    margin: 40px 0;
    border-radius: 30px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-image {
    width: 40%;
    background-size: cover;
    background-position: center;
}

.featured-content {
    width: 60%;
    padding: 25px;
}

.featured-tag {
    display: inline-block;
    padding: 5px 12px;
    background: #e30613;
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #04274b;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.resource-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.resource-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.resource-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.badge-empresa { background: #04274b; }
.badge-aprender { background: #e30613; }
.badge-empleo { background: #00a86b; }

.resource-content {
    padding: 20px;
}

.resource-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #04274b;
}

.resource-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.resource-meta i { margin-right: 5px; }

.resource-link {
    display: inline-block;
    color: #e30613;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.newsletter-section {
    background: linear-gradient(135deg, #04274b 0%, #0a3a6b 100%);
    padding: 80px 20px;
    margin: 60px 0;
    border-radius: 30px;
    text-align: center;
    color: white;
}

.newsletter-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-form {
    max-width: 500px;
    margin: 40px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #e30613;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #b3050f;
}

/* ===== MENÚ MÓVIL (ÚNICO BLOQUE) ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #333;
}

.mobile-menu-toggle:hover {
    background-color: #f0f0f0;
}

.mobile-menu-toggle.active {
    color: #e30613;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 99;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 15px 0;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        min-width: 100%;
        background-color: #f9f9f9;
        margin: 0;
        border-radius: 0;
    }
    
    .menu-item-has-children.active > .sub-menu {
        display: block;
    }
    
    .menu-item-has-children > a {
        position: relative;
        display: block;
        padding-right: 30px;
    }
    
    .menu-item-has-children > a::after {
        content: '▼';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .menu-item-has-children.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* Responsive General */
@media (max-width: 1024px) {
    .services-grid,
    .clients-carousel,
    .testimonials-grid,
    .news-grid,
    .stats-grid,
    .featured-grid,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .clients-carousel,
    .testimonials-grid,
    .news-grid,
    .footer-container,
    .service-intro,
    .mkt-services,
    .hr-grid,
    .info-box,
    .stats-grid,
    .featured-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .footer-right,
    .contact-info li {
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .info-box,
    .featured-card {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-image {
        width: 100%;
        height: 200px;
    }
    
    .featured-content {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .tabs-header {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .tab-btn {
        width: 100%;
    }
}

/* Estilos para debugging y carga */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
    background: #f9f9f9;
    border-radius: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.no-data, .error {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
    background: #f5f5f5;
    border-radius: 10px;
}

.error {
    color: #e30613;
    background: #ffe6e6;
}

.error small {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 12px;
}