/* styles.min.css - CSS Optimizado con Hero Solo Video + Sección Intro */

:root {
    --primary: #8B2928;
    --primary-dark: #6d1f1e;
    --secondary: #FFD700;
    --secondary-dark: #e6c200;
    --light: #ffffff;
    --dark: #333333;
    --gray: #f5f5f5;
    --gray-dark: #666666;
    --success: #8B2928;
    --success-dark: #6d1f1e;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 10px auto 30px;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

.btn-block {
    width: 100%;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: var(--success);
    color: var(--light);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--success);
    color: var(--light);
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.whatsapp-btn span {
    display: none;
}

@media (min-width: 768px) {
    .whatsapp-btn span {
        display: inline;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--light);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 90px;
    width: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary);
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--light);
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--primary-dark);
}

/* Hero SOLO con Video */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Sección de Introducción con Fondo Rojo */
.intro-section {
    position: relative;
    padding: 80px 0;
    background-color: #8B2928; /* Color de fondo por defecto */
    color: var(--light);
}

.intro-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

.intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light);
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.intro-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature i {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.feature div {
    display: flex;
    flex-direction: column;
}

.feature strong {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* AÑADIR al archivo styles.min.css después de la sección de productos */

/* Productos - Filtros */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--light);
    border: 2px solid var(--gray-medium);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* Grid Principal de Productos */
.products-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Grid Secundario de Productos */
.products-grid-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    display: none; /* Oculto por defecto */
}

.products-grid-secondary.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tarjeta de Producto Mejorada */
.product-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge:empty {
    display: none;
}

.product-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.3rem;
    min-height: 3rem;
}

.product-content p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 4.5rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--gray);
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--success);
    color: var(--light);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Botones de acción */
.text-center {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.text-center .btn {
    min-width: 250px;
}

/* Efectos de filtrado */
.product-card.hidden {
    display: none;
}

/* Estadísticas de productos */
.product-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(139,41,40,0.05);
    border-radius: var(--radius);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* AÑADIR al archivo styles.min.css después de la sección de productos */

/* Productos - Filtros */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--light);
    border: 2px solid var(--gray-medium);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* Grid Principal de Productos */
.products-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Grid Secundario de Productos */
.products-grid-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    display: none; /* Oculto por defecto */
}

.products-grid-secondary.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tarjeta de Producto Mejorada (SIN botones) */
.product-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge:empty {
    display: none;
}

.product-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.3rem;
    min-height: 3rem;
}

.product-content p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 4.5rem;
}

/* Product Footer sin botones - Solo precio y código */
.product-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--gray);
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.product-code {
    font-size: 0.85rem;
    color: var(--gray-dark);
    font-family: 'Courier New', monospace;
    background: rgba(139, 41, 40, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}

/* Botones de acción principales */
.text-center {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.text-center .btn {
    min-width: 250px;
}

/* Efectos de filtrado */
.product-card.hidden {
    display: none;
}

/* Estadísticas de productos */
.product-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(139,41,40,0.05);
    border-radius: var(--radius);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid para pantallas grandes */
@media (min-width: 1200px) {
    .products-grid-main,
    .products-grid-secondary {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .products-grid-main,
    .products-grid-secondary {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .products-grid-main,
    .products-grid-secondary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-content h3 {
        min-height: auto;
    }
    
    .product-content p {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .products-grid-main,
    .products-grid-secondary {
        grid-template-columns: 1fr;
    }
    
    .product-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .text-center {
        flex-direction: column;
    }
    
    .text-center .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .product-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Grid para pantallas grandes */
@media (min-width: 1200px) {
    .products-grid-main,
    .products-grid-secondary {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .products-grid-main,
    .products-grid-secondary {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .products-grid-main,
    .products-grid-secondary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-content h3 {
        min-height: auto;
    }
    
    .product-content p {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .products-grid-main,
    .products-grid-secondary {
        grid-template-columns: 1fr;
    }
    
    .product-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .text-center {
        flex-direction: column;
    }
    
    .text-center .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Sección de Menú Simple */
.menu-section {
    background: var(--gray);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-image img {
    transform: scale(1.03);
}

/* Responsive para menú */
@media (max-width: 992px) {
    .menu-grid {
        gap: 20px;
    }
    
    .menu-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .menu-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .menu-image {
        height: 250px;
    }
}

/* AÑADIR al archivo styles.min.css después de la sección de historia */

/* Historia - Layout actualizado */
.history-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.history-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.history-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.milestone {
    text-align: center;
    padding: 20px;
    background: var(--gray);
    border-radius: var(--radius);
    transition: var(--transition);
}

.milestone:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.year {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.milestone h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Columna de imagen con cita */
.history-image {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Cita del fundador (ahora debajo de la imagen) */
.quote {
    background: var(--primary);
    color: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    font-style: italic;
    position: relative;
    margin: 0;
    box-shadow: var(--shadow);
}

.quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    text-align: right;
    font-size: 0.95rem;
}

/* Información adicional */
.history-extra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(139, 41, 40, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
}

.extra-item:hover {
    background: rgba(139, 41, 40, 0.1);
    transform: translateY(-3px);
}

.extra-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 41, 40, 0.1);
    border-radius: 50%;
}

.extra-item div {
    display: flex;
    flex-direction: column;
}

.extra-item strong {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.extra-item span {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Línea de tiempo adicional */
.timeline-extra {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--gray);
}

.timeline-extra h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 120px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 1;
    margin: 0 30px;
    box-shadow: var(--shadow);
}

.timeline-content {
    flex: 1;
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive para historia */
@media (max-width: 992px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-image {
        order: -1; /* La imagen va primero en móvil */
    }
    
    .milestones {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-date {
        flex: 0 0 100px;
        margin-left: 0;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .history-extra {
        grid-template-columns: 1fr;
    }
    
    .timeline-date {
        flex: 0 0 80px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .history-text h3 {
        font-size: 1.5rem;
    }
    
    .year {
        font-size: 1.5rem;
    }
    
    .milestone {
        padding: 15px;
    }
    
    .extra-item {
        padding: 12px;
    }
    
    .extra-item i {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
    
    .extra-item strong {
        font-size: 1.1rem;
    }
    
    .quote {
        padding: 20px;
    }
    
    .quote::before {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-date {
        flex: 0 0 70px;
        margin-right: 15px;
        font-size: 0.9rem;
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(139,41,40,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.location-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.location-header {
    background: var(--primary);
    color: var(--light);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-header h3 {
    color: var(--light);
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.new {
    background: #4CAF50;
    color: var(--light);
}

.location-body {
    padding: 20px;
}

.address {
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.phones a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.phones a:hover {
    text-decoration: underline;
}

.schedule {
    color: var(--gray-dark);
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

.btn-map:hover {
    text-decoration: underline;
}

.location-note {
    margin-top: 30px;
    padding: 15px;
    background: rgba(139,41,40,0.1);
    border-radius: var(--radius);
    text-align: center;
}

.location-note p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

/* AÑADIR al archivo styles.min.css después de la sección de sedes */

/* Sedes - Diseño 2x2 con mapas */
.locations-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* Tarjeta de ubicación con mapa */
.location-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.location-card:nth-child(1) { animation-delay: 0.1s; }
.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.3s; }
.location-card:nth-child(4) { animation-delay: 0.4s; }

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Header de ubicación */
.location-header {
    background: var(--primary);
    color: var(--light);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-header h3 {
    color: var(--light);
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.new {
    background: #4CAF50;
    color: var(--light);
}

/* Cuerpo de ubicación */
.location-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.location-info {
    padding: 20px;
    border-bottom: 1px solid var(--gray);
}

.address, .schedule, .delivery {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.address i, .schedule i, .delivery i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.phone:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.phone i {
    width: 16px;
    text-align: center;
}

/* Mapa dentro de la tarjeta */
.location-map {
    padding: 0;
    margin-top: auto;
}

.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-bottom: 3px solid var(--primary);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.btn-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--gray);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    width: 100%;
    cursor: pointer;
}

.btn-map:hover {
    background: var(--primary);
    color: var(--light);
}

/* Nota de servicio */
.location-note {
    margin: 40px 0;
    padding: 20px;
    background: rgba(139, 41, 40, 0.05);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.note-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.note-content i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.note-content h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.note-content p {
    color: var(--gray-dark);
    margin: 0;
    font-size: 0.95rem;
}

/* Mapa interactivo general */
.interactive-map {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--gray);
}

.interactive-map h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.map-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.map-btn {
    padding: 10px 20px;
    background: var(--light);
    border: 2px solid var(--gray-medium);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.map-btn.active {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.main-map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animación para las tarjetas */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para sedes */
@media (max-width: 992px) {
    .locations-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .map-selector {
        gap: 8px;
    }
    
    .map-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .location-header h3 {
        font-size: 1.1rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .location-info {
        padding: 15px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .main-map-container {
        height: 350px;
    }
    
    .note-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .note-content i {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .interactive-map h3 {
        font-size: 1.5rem;
    }
    
    .map-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .main-map-container {
        height: 300px;
    }
    
    .map-container {
        height: 200px;
    }
    
    .location-header {
        padding: 15px;
    }
    
    .location-header h3 {
        font-size: 1rem;
    }
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(139,41,40,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.phones-list {
    text-align: left;
}

.phone-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
}

.phone-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.phone-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
}

.phone-item a {
    display: block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2px;
}

.phone-item a:hover {
    text-decoration: underline;
}

.email {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.email:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-top: 10px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    transition: var(--transition);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #833AB4);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.whatsapp {
    background: var(--success);
}

.social-icon:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-form > p {
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,41,40,0.1);
}

.form-note {
    margin-top: 15px;
    padding: 10px;
    background: rgba(139,41,40,0.05);
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-note i {
    color: var(--primary);
}

/* Estilos para la nueva estructura de contacto */
.contact-form-social {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-section {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-section h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-form-section > p {
    color: var(--gray-dark);
    margin-bottom: 30px;
}

/* Sección de redes sociales rediseñada */
.social-section {
    margin-top: 10px;
}

.social-section .contact-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 0;
}

.social-section .contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(139,41,40,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

.social-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737);
    background-size: 400% 400%;
    animation: gradientShift 6s ease infinite;
}

.social-icon.facebook {
    background: linear-gradient(45deg, #1877F2, #0D8BF0);
}

.social-icon.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.social-icon:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.social-icon i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.social-icon span {
    flex: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Aviso con enlace */
.contact-notice {
    background: linear-gradient(135deg, rgba(139, 41, 40, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: var(--radius);
    padding: 25px;
    border-left: 4px solid var(--primary);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 10px;
    transition: var(--transition);
}

.contact-notice:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.notice-icon {
    background: var(--primary);
    color: var(--light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.notice-content p {
    color: var(--gray-dark);
    margin-bottom: 8px;
    line-height: 1.6;
}

.notice-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    display: inline-block;
    padding: 2px 0;
}

.notice-link:hover {
    border-bottom-color: var(--primary);
    color: var(--primary-dark);
}

.notice-small {
    font-size: 0.9rem;
    color: var(--gray-dark);
    opacity: 0.8;
    font-style: italic;
}

/* Responsive para la nueva estructura de contacto */
@media (max-width: 992px) {
    .contact-form-social {
        gap: 25px;
    }
    
    .contact-form-section {
        padding: 30px;
    }
    
    .social-section .contact-card {
        padding: 25px;
    }
    
    .contact-notice {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .contact-form-section,
    .social-section .contact-card {
        padding: 25px 20px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        padding: 12px 15px;
    }
    
    .notice-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 20px 15px;
    }
    
    .contact-form-section h3 {
        font-size: 1.3rem;
    }
    
    .social-section .contact-card {
        padding: 20px 15px;
    }
    
    .contact-notice {
        padding: 15px;
        gap: 15px;
    }
    
    .notice-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 85px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.link-group a,
.link-group p {
    display: block;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.link-group a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateX(5px);
}

.link-group i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .history-content {
        grid-template-columns: 1fr;
    }
    
    .milestones {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .intro-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-phone {
        margin-top: 20px;
        justify-content: center;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 20px 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .milestones {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .intro-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-title {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .products-grid,
    .locations-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card,
    .contact-form {
        padding: 20px;
    }
}