/* Fuentes locales - Coolvetica */
@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/Coolvetica Rg.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/Coolvetica Rg It.woff2') format('woff2');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/Coolvetica Hv Comp.woff2') format('woff2');
    font-weight: 1000;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/Coolvetica Rg Cond.woff2') format('woff2');
    font-weight: 1000;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/Coolvetica Rg Cram.woff2') format('woff2');
    font-weight: 1200;
    font-style: normal;
    font-display: swap;
}


/* Fuentes locales válidas */
@font-face {
    font-family: 'Raleway-Local';
    src: url('../fonts/Raleway-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway-Local';
    src: url('../fonts/Raleway-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #812e2d;
    --secondary-color: #ffffff;
    --text-dark: #373d49;
    --text-light: #812e2d;
    --accent-color: #dad1c5;
}

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

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

body {
    font-family: 'Raleway-Local', 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Estilos generales para títulos - Coolvetica en negritas */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.75rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.25rem;
}

/* Navbar */
.navbar {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Coolvetica', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(129, 46, 45, 0.1);
    transform: translateY(-2px);
}

/* Indicador de sección activa */
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    background-color: var(--primary-color);
    font-weight: 600;
}

.navbar-nav .nav-link.active:hover {
    color: var(--secondary-color) !important;
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(129, 46, 45, 0.3);
}

/* Mejorar el toggler del navbar */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(129, 46, 45, 0.25);
}

.navbar-toggler:hover {
    background-color: rgba(129, 46, 45, 0.1);
}

/* Crear el ícono del menú hamburguesa manualmente */
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: relative;
}

/* Las tres líneas del hamburger */
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    background-image: none;
}

.navbar-toggler-icon {
    background-color: var(--primary-color);
    width: 22px;
    height: 2px;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateY(0px);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 1px;
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    top: 6px;
}

/* Animación cuando el menú está abierto */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Animación del menú desplegable */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

/* Navbar scrolled state */
.navbar-scrolled {
    padding: 0.5rem 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Indicador visual para sección activa */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

/* Prevenir el override del after en enlaces activos */
.navbar-nav .nav-link.active {
    position: relative;
}

.navbar-nav .nav-link.active::after {
    background-color: var(--secondary-color);
}

/* Estilos específicos para móvil */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
        background-color: var(--secondary-color);
        border-radius: 15px;
        margin-top: 0.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 1rem;
        text-align: center;
        border-radius: 15px;
    }
    
    .navbar-nav .nav-link.active {
        background-color: var(--primary-color);
        color: var(--secondary-color) !important;
    }

    /* Ocultar indicador after en móvil */
    .navbar-nav .nav-link::after {
        display: none;
    }

    /* Animación suave del menú desplegable en móvil */
    .navbar-collapse.collapsing {
        transition: height 0.35s ease;
    }
}

/* Header */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #fff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/anagaby.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-dark);
}

.hero h1 {
    font-family: 'Coolvetica', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.logo-placeholder {
    width: 500px;
    height: 200px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Estilos específicos para diferentes tamaños del logo SVG */
.logo-svg {
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.logo-navbar {
    width: 150px;
    height: 80px;
    color: var(--primary-color);
}

.logo-hero {
    width: 480px;
    height: 480px;
    color: var(--primary-color);
    display: block;
    margin: 0 auto;
}

.logo-footer {
    width: 120px;
    height: 120px;
    color: var(--secondary-color);
}

/* Secciones */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-family: 'Coolvetica', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Productos */
.productos {
    background-color: var(--accent-color);
}

.product-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Asegurar que los títulos de productos usen Coolvetica */
.product-card h3 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Carrusel de Hilos */
.hilos-carousel {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hilos-track {
    display: flex;
    transition: transform 0.5s ease;
}

.hilo-slide {
    min-width: 100%;
    position: relative;
}

.hilo-image {
    width: 400px;
    height: 300px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hilo-image:hover {
    transform: scale(1.02);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-color);
}

.indicator:hover {
    background-color: var(--primary-color);
}

/* Responsive para el carrusel */
@media (max-width: 768px) {
    .hilo-image {
        width: 100%;
        height: 250px;
    }

    .hilos-carousel {
        max-width: 100%;
    }
}

/* Modal de Zoom */
.hilos-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-header h3 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 700;
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-carousel {
    position: relative;
    width: 100%;
    max-width: 90vw;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: white;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
}

.modal-image:active {
    cursor: grabbing;
}

.modal-image.zoomed {
    cursor: move;
}

/* Controles de navegación */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

/* Controles de zoom */
.zoom-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.zoom-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Indicadores del modal */
.modal-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.modal-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.modal-indicator:hover {
    background-color: var(--primary-color);
}

/* Responsive para modal */
@media (max-width: 768px) {
    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: -50px;
    }

    .next-btn {
        right: -50px;
    }

    .zoom-controls {
        top: 5px;
        right: 5px;
    }

    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .modal-carousel {
        max-width: 95vw;
        max-height: 60vh;
    }
}

/* Carrusel de Clientes */
.clients-carousel {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.client-logo {
    min-width: 200px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Contacto */
.contact-info {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* Botones */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6a832;
    border-color: #e6a832;
    transform: translateY(-2px);
}

/* WhatsApp Float con animación pulsante - 1.5x más grande */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    background: #25d366; /* Verde claro */
    color: white;
    padding: 22px 30px; /* 1.5x más grande */
    border-radius: 75px; /* 1.5x más grande */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* 1.5x más grande */
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(144, 238, 144, 0.4); /* 1.5x más grande */
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 21px; /* 1.5x más grande */
    animation: pulse-green 2s infinite;
    min-width: auto;
}

.whatsapp-float a:hover {
    background: #7FDD7F; /* Verde claro más oscuro al hover */
    transform: scale(1.05);
    box-shadow: 0 9px 30px rgba(144, 238, 144, 0.6); /* 1.5x más grande */
}

.whatsapp-icon {
    font-size: 30px; /* 1.5x más grande */
    flex-shrink: 0;
}

.whatsapp-text {
    white-space: nowrap;
}

/* Animación pulsante verde - 1.5x más grande */
@keyframes pulse-green {
    0% {
        box-shadow: 0 6px 22px rgba(144, 238, 144, 0.4); /* 1.5x más grande */
    }
    50% {
        box-shadow: 0 6px 37px rgba(144, 238, 144, 0.8); /* 1.5x más grande */
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 6px 22px rgba(144, 238, 144, 0.4); /* 1.5x más grande */
    }
}

/* Estilos para redes sociales */
.social-media-links a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-media-links a:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Clase específica para elementos WhatsApp */
.whatsapp-element {
    color: #90EE90 !important;
    border-color: #90EE90 !important;
}

.whatsapp-button {
    background-color: #90EE90 !important;
    border-color: #90EE90 !important;
    color: white !important;
}

.whatsapp-button:hover {
    background-color: #7FDD7F !important;
    border-color: #7FDD7F !important;
}

/* Responsive para títulos */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    h4 {
        font-size: 1.5rem;
    }
    
    h5 {
        font-size: 1.25rem;
    }
    
    h6 {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-family: 'Coolvetica', sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-family: 'Coolvetica', sans-serif;
        font-weight: 700;
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .logo-placeholder {
        width: 300px;
        height: 300px;
    }

    .logo-hero {
        width: 280px;
        height: 280px;
    }
    
    html {
        scroll-padding-top: 90px; /* Menos espacio en móvil */
    }
}

/* Estilos para el mapa y navegación */
.map-container {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navigation-buttons .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navigation-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

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

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.location-info {
    background: var(--accent-color);
    border-radius: 10px;
    padding: 1rem;
}

.info-card h5 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive para el mapa */
@media (max-width: 768px) {
    .map-container {
        padding: 1rem;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .navigation-buttons .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .navigation-buttons .col-6,
    .navigation-buttons .col-12 {
        margin-bottom: 0.5rem;
    }
}

/* Animación para los botones de navegación */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.navigation-buttons .btn:active {
    animation: pulse 0.3s ease;
}

/* Responsive para redes sociales y WhatsApp flotante */
@media (max-width: 768px) {
    .social-media-links {
        gap: 10px !important;
    }
    
    .social-media-links a {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Para móviles: solo mostrar ícono, ocultar texto */
    .whatsapp-float a {
        padding: 18px !important; /* Circular en móvil, 1.5x más grande */
        border-radius: 50% !important; /* Completamente redondo */
        font-size: 18px !important;
        gap: 0 !important;
        width: 72px !important; /* 1.5x más grande que 48px estándar */
        height: 72px !important; /* 1.5x más grande que 48px estándar */
        min-width: 72px !important;
    }
    
    .whatsapp-text {
        display: none !important; /* Ocultar texto en móvil */
    }
    
    .whatsapp-icon {
        font-size: 27px !important; /* 1.5x más grande para móvil */
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Coolvetica', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Estilos para botones "Saber más" */
.saber-mas-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
    border: 2px solid var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.saber-mas-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #dad1c5);
    transition: left 0.3s ease;
    z-index: -1;
}

.saber-mas-btn:hover::before {
    left: 0;
}

.saber-mas-btn:hover {
    color: white !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(145, 83, 2, 0.4);
}

/* Estilos modernos para el formulario de contacto */
.contact-form-container {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.02)
    );
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 123, 255, 0.5), 
        transparent
    );
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.form-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-group.col-md-6 {
    flex: 1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.label-icon {
    font-size: 1.1rem;
}

.modern-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 15px !important;
    color: var(--text-dark) !important;
    padding: 8px 18px !important;
    font-size: 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(5px);
    width: 100% !important;
}

.modern-input:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(145, 83, 2, 0.1) !important;
    transform: translateY(-2px) !important;
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.modern-textarea {
    resize: vertical !important;
    min-height: 100px !important;
}

.form-submit {
    text-align: center;
    margin-top: .5rem;
}

.btn-modern-submit {
    background: linear-gradient(135deg, var(--primary-color), #dad1c5);
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(145, 83, 2, 0.4);
    width: 100%;
    max-width: 300px;
}

.btn-modern-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(145, 83, 2, 0.4);
}

.btn-modern-submit:active {
    transform: translateY(-1px);
}

.btn-background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern-submit:hover .btn-background {
    left: 100%;
}

.form-note {
    margin-top: 1rem;
}

.form-note small {
    color: var(--text-dark);
    font-size: 0.85rem;
}

/* Estilos para secciones de información adicional */
.additional-info-section {
    margin-top: 2rem;
}

.info-card-full-width {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-header h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.schedule-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.schedule-day {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.schedule-time {
    color: var(--text-dark);
    font-size: 1rem;
}

.consultation-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
}

.consultation-content h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.consultation-content p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-consultation {
    background: linear-gradient(135deg, #25d366, #25d366);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #25d366, #25d366);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

/* Animación para campos requeridos vacíos */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-control.error {
    animation: shake 0.5s ease-in-out;
    border-color: #dc3545 !important;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.5) !important;
}

/* Mejorar producto-card para acomodar botones */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding-bottom: 80px; /* Espacio para el botón */
}

.product-card .saber-mas-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .product-card {
        padding-bottom: 70px;
    }
    
    .product-card .saber-mas-btn {
        bottom: 15px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .contact-form-container {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .modern-input {
        padding: 12px 14px !important;
        font-size: 0.95rem !important;
    }
    
    .btn-modern-submit {
        padding: 14px 30px;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .schedule-item {
        padding: 1rem;
    }
    
    .consultation-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .info-card-full-width {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .info-header h4 {
        font-size: 1.3rem;
    }
    
    .consultation-content h4 {
        font-size: 1.3rem;
    }
    
    .btn-consultation {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}