@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --color-primary: #00ffa2;
    --color-secondary: #0033ff;
    --color-accent: #00ffdd;
    --color-dark: #3700ff;
    --color-light: #dbff00;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    padding-top: 200px;
}

.navbar {
    background: linear-gradient(
        45deg,
        #10ede2 0%,
        #1b33b5 50%,
        #10ede2 100%
    );
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1030;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bytokio {
    color: white;
    text-align: center;
    text-decoration: none;
    text-decoration-line: none;
}




.navbar-brand img {
    max-height: 120px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.brand-text .company-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.brand-text .company-tagline {
    font-size: 1rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.section-padding {
    padding: 80px 0;
}

/* Hero Carousel */
.hero-slide {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-slide h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Cards Styles */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: rem;
    margin-top: 2rem;
}

.info-cards-container,
.info-card {
    display: none;
}

/* Process Section Updates */
.process-section-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.process-image-container {
    flex: 0 0 33.333%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.process-image-container:hover img {
    transform: scale(1.05);
}

.process-cards-wrapper {
    flex: 0 0 66.666%;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.process-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-icon {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    margin-bottom: 1rem;
}

.process-icon svg {
    width: 80px;
    height: 80px;
    fill: white;
}

.process-content {
    padding: 1.5rem;
}

.process-card h3 {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #10ede2, #1b33b5);
    border-radius: 50%;
    padding: 1.2rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.service-card h3 {
    color: #1b33b5;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.service-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.service-image-container:hover img {
    transform: scale(1.05);
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(45deg, #10ede2 0%, #1b33b5 50%, #10ede2 100%);
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.contact-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(16, 237, 226, 0.25);
}

.contact-form .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    padding: 0.8rem 2rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: white;
    color: #1b33b5;
    transform: translateY(-2px);
}

.contact-form label {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: linear-gradient(45deg, #10ede2 0%, #1b33b5 50%, #10ede2 100%);
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    width: 50px;
    text-align: center;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-item.emergency {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

.contact-item.emergency i {
    color: #ff3b3b;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}




/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-icon {
    width: 50px; /* Tamaño del ícono */
    height: 50px; /* Tamaño del ícono */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Forma circular */
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2); /* Fondo semitransparente */
    backdrop-filter: blur(5px); /* Efecto de desenfoque */
    background-size: cover; /* Ajustar la imagen al tamaño del contenedor */
    background-position: center; /* Centrar la imagen */
    background-repeat: no-repeat; /* Evitar repetición */
}

/* Imágenes específicas para cada red social */



.social-icon.instagram {
    background-image: url('../img/social/instagram.png'); /* URL de la imagen de Instagram */
}

.social-icon.facebook {
    background-image: url('../img/social/facebook.png'); /* URL de la imagen de Facebook */
}

.social-icon.whatsapp {
    background-image: url('../img/social/whatsapp.png'); /* URL de la imagen de Whatsapp */
}

.social-icon.smartphone {
    background-image: url('../img/social/smartphone.png'); /* URL de la imagen de Smartphone */
}

.social-icon.reloj {
    background-image: url('../img/social/reloj.png'); /* URL de la imagen de Reloj */
}

.social-icon.emergencia {
    background-image: url('../img/social/emergencia.png'); /* URL de la imagen de Emergencia */
}





/* Social Media Icons 
.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-icon {
    color: white;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}*/

.social-icon:hover {
    width: 50px; /* Tamaño del ícono */
    height: 50px; /* Tamaño del ícono */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Forma circular */
    transition: all 0.6s ease;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(16, 237, 226, 0.3);
}

.social-icon.instagram:hover {
    background-image: url('../img/social/instagramhover.png'); /* URL de la imagen de Instagram */
}

.social-icon.facebook:hover {
    background-image: url('../img/social/facebookover.png'); /* URL de la imagen de Facebook */
}

.social-icon.whatsapp:hover {
    background-image: url('../img/social/whatsappover.png'); /* URL de la imagen de Twitter */
}

.social-icon.smartphone {
    background-image: url('../img/social/smartphone.png'); /* URL de la imagen de Smartphone */
}

.social-icon.reloj {
    background-image: url('../img/social/reloj.png'); /* URL de la imagen de Reloj */
}

.social-icon.emergencia {
    background-image: url('../img/social/emergencia.png'); /* URL de la imagen de Emergencia */
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 1.5rem;
}

footer {
    background: linear-gradient(
        135deg,
        #10ede2 0%,
        #1b33b5 45%,
        #10ede2 55%,
        #1b33b5 100%
    );
    background-size: 300% 300%;
    animation: footerGradient 20s ease infinite;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Estilos para fecha y hora */
#fecha-hora-argentina {
    text-align: center;
    padding: 10px;
    background-color: #f8f9fa;
    margin: 15px auto;
    max-width: 500px;
    border-radius: 8px;
    font-size: 1.1em;
}

#fecha-hora-argentina .fecha {
    display: block;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 5px;
}

#fecha-hora-argentina .hora {
    display: block;
    color: #e74c3c;
    font-size: 1.3em;
    font-weight: bold;
}

#fecha-hora {
    margin: 1rem 0;
    text-align: center;
    font-size: 1em;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.01);
}
.price-display1 {
    
    margin: 0.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    font-size: 1em;
}
.price-ars { color: #28a745; font-weight: bold; }
.price-usd { color: #0d6efd; font-size: 0.9em; margin-top: 0.5rem; }
.disclaimer {
    margin-top: 2rem;
    font-size: 0.8em;
    color: #666;
    text-align: center;
}

        /* Agregar esto al final de los estilos */
        #confirmationMessage {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease-out;
}


@keyframes slideIn {
    from { top: -100px; }
    to { top: 20px; }
}

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

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

/* Responsive Design Rules */

/* Desktop */
@media (min-width: 1199.98px) {
    .hero-slide h1 {
        font-size: 4rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* Tablet Portrait */
@media (min-width: 576px) and (max-width: 991.98px) and (orientation: portrait) {
    .hero-slide h1 {
        font-size: 2.8rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navbar-brand img {
        max-height: 50px;
    }
    
    .brand-text .company-name {
        font-size: 1.2rem;
    }
    
    .brand-text .company-tagline {
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

/* Tablet Landscape */
@media (min-width: 991.98px) and (max-width: 1199.98px) and (orientation: landscape) {
    .hero-slide h1 {
        font-size: 3.2rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Portrait (Default) */
@media (max-width: 575.98px) {
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slide {
        height: 60vh;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .navbar-brand img {
        max-height: 40px;
    }
    
    .brand-text .company-name {
        font-size: 1rem;
    }
    
    .brand-text .company-tagline {
        font-size: 0.8rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}

@media (max-width: 991.98px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}

/* Mobile Landscape */
@media (min-width: 576px) and (max-width: 991.98px) and (orientation: landscape) {
    .hero-slide {
        height: 100vh;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .navbar-brand img {
        max-height: 45px;
    }
}

/* Update responsive styles for process section */
@media (max-width: 991.98px) {
    .process-section-container {
        flex-direction: column;
    }
    
    .process-image-container {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
    
    .process-cards-wrapper {
        flex: 0 0 100%;
    }
    
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .process-cards {
        grid-template-columns: 1fr;
    }
}
/* ===== BANDA DE EMERGENCIAS ROJA FIJA DEBAJO DEL HEADER ===== */
.emergency-banner {
    background: linear-gradient(90deg, #dc2626, #b91c1c, #dc2626);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    padding: 8px 0;
    position: fixed;
    top: 120px; /* Justo debajo del header */
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.emergency-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.emergency-banner__text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.emergency-banner__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.emergency-banner__phone:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.emergency-banner__icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Ajuste del padding del body para la banda fija */
body {
    padding-top: 140px; /* Header (80px) + Banda emergencia (40px) */
}

/* Ajuste del chatbot para que no se superponga */
.chatbot-button {
    position: fixed;
    bottom: 30px; /* Más arriba para no interferir */
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.chatbot-window {
    position: fixed;
    bottom: 100px; /* Ajustada para no interferir */
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 997;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

/* Responsive para la banda de emergencias */
@media (max-width: 768px) {
    .emergency-banner {
        top: 70px; /* Ajuste para móviles */
        padding: 6px 0;
    }
    
    .emergency-banner__content {
        justify-content: center;
        text-align: center;
        padding: 0 12px;
    }
    
    .emergency-banner__text {
        font-size: 12px;
    }
    
    .emergency-banner__phone {
        padding: 5px 12px;
        font-size: 13px;
    }
    
    body {
        padding-top: 100px; /* Ajuste para móviles */
    }
    
    .chatbot-button {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 15px;
    }
    
    .chatbot-window {
        width: calc(100vw - 30px);
        height: 70vh;
        right: 15px;
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .emergency-banner__text {
        font-size: 11px;
    }
    
    .emergency-banner__phone {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    body {
        padding-top: 95px;
    }
}

/* Eliminar el padding-bottom del body ya que la banda ahora está arriba */
body {
    padding-bottom: 0 !important;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
        /* Ajuste del contenido principal para la banda flotante inferior */
        body {
            padding-bottom: 52px;
        }
        
        /* Estilos para el botón flotante del chatbot */
        .chatbot-button {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0ea5e9, #0369a1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
            border: 2px solid white;
        }
        
        .chatbot-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(14, 165, 233, 0.6);
        }
        
        .chatbot-button i {
            color: white;
            font-size: 24px;
        }
        
        .chatbot-button__pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(14, 165, 233, 0.4);
            animation: pulse-ring 2s infinite;
        }
        
        @keyframes pulse-ring {
            0% {
                transform: scale(0.8);
                opacity: 1;
            }
            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }
        
        /* Ventana del chatbot */
        .chatbot-window {
            position: fixed;
            bottom: 150px;
            right: 20px;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 998;
            display: none;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }
        
        .chatbot-window.active {
            display: flex;
        }
        
        .chatbot-header {
            background: linear-gradient(135deg, #0ea5e9, #0369a1);
            color: white;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .chatbot-header h3 {
            margin: 0;
            font-weight: 600;
            font-size: 16px;
        }
        
        .chatbot-close {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
        }
        
        .chatbot-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .message.bot {
            align-self: flex-start;
            background: #f3f4f6;
            color: #374151;
            border-bottom-left-radius: 5px;
        }
        
        .message.user {
            align-self: flex-end;
            background: linear-gradient(135deg, #0ea5e9, #0369a1);
            color: white;
            border-bottom-right-radius: 5px;
        }
        
        .chatbot-input {
            display: flex;
            padding: 15px;
            border-top: 1px solid #e5e7eb;
            background: white;
        }
        
        .chatbot-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #d1d5db;
            border-radius: 20px;
            outline: none;
            font-size: 14px;
        }
        
        .chatbot-input input:focus {
            border-color: #0ea5e9;
        }
        
        .chatbot-input button {
            background: linear-gradient(135deg, #0ea5e9, #0369a1);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            margin-left: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .emergency-banner__content {
                justify-content: center;
                text-align: center;
                padding: 0 12px;
            }
            
            .emergency-banner__text {
                font-size: 13px;
            }
            
            .emergency-banner__phone {
                padding: 6px 14px;
                font-size: 14px;
            }
            
            body {
                padding-bottom: 48px;
            }
            
            .chatbot-button {
                width: 55px;
                height: 55px;
                bottom: 70px;
                right: 15px;
            }
            
            .chatbot-window {
                width: calc(100vw - 30px);
                height: 70vh;
                right: 15px;
                bottom: 130px;
            }
        }
        
        @media (max-width: 480px) {
            .emergency-banner__text {
                font-size: 12px;
            }
            
            .emergency-banner__phone {
                font-size: 13px;
                padding: 5px 12px;
            }
            
            body {
                padding-bottom: 44px;
            }
        }

        /* Estilos adicionales para las cards */
        .section-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .section-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .floating-icon {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* Estilos para el indicador de "escribiendo..." */
.typing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ca3af;
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.typing-text {
    color: #6b7280;
    font-style: italic;
}