:root {
    --primary-color: #ff0000;
    --text-color: #333333;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --gray: #888888;
    --light-gray: #f8f8f8;
    --orange: #ff6b35;
    --error-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative; /* Para el menú móvil */
}

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

/* Header Styles */
#header {
    position: fixed;
    width: 100%;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 100px;
    transition: height 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

.contact-btn {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 13px 25px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

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

.header-social a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.header-social a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 90px; /* Debajo del header */
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

.contact-btn-mobile {
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-btn-mobile:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.mobile-social {
    display: flex;
    gap: 25px;
}

.mobile-social a {
    color: var(--text-color);
    font-size: 1.75rem;
    transition: color 0.3s ease;
}

.mobile-social a:hover {
    color: var(--primary-color);
}

/* Hamburger Menu */
#menuToggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

#menuToggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

#menuToggle span:last-child {
    margin-bottom: 0;
}

#menuToggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#menuToggle.active span:nth-child(2) {
    opacity: 0;
}

#menuToggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Main Content */
.main-content {
    padding-top: 140px;
}

/* Hero Section */
.hero-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #cc0000 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.hero-contact h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.hero-contact p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Contact Methods Section */
.contact-methods {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-methods h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.contact-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    max-width: 300px;
    min-width: 260px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-decoration: none;
    color: var(--text-color);
}

.whatsapp-card:hover {
    border-color: #25d366;
}

.phone-card:hover {
    border-color: var(--primary-color);
}

.email-card:hover {
    border-color: #4285f4;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.whatsapp-card .card-icon {
    color: #25d366;
}

.phone-card .card-icon {
    color: var(--primary-color);
}

.email-card .card-icon {
    color: #4285f4;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--gray);
    font-weight: 500;
}

.card-action {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-card:hover .card-action {
    background: #25d366;
}

.email-card:hover .card-action {
    background: #4285f4;
}

/* Form and Map Section */
.form-map-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.form-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-column h3,
.form-column h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Map Styles */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.location-info {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.location-item span {
    color: var(--gray);
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Nuevos estilos para ejemplos y validación */
.field-example {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: block;
    font-weight: 500;
    animation: fadeIn 0.2s ease;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
    background-color: rgba(220, 53, 69, 0.05);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: var(--success-color);
    background-color: rgba(40, 167, 69, 0.05);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
}

/* Additional Info Section */
.additional-info {
    padding: 4rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-icon {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Estilos para las Notificaciones (Versión Mejorada) --- */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.4s ease;
    font-family: 'Montserrat', sans-serif;
    border-left: 5px solid #666; 
    background: #fff;
    color: #333;
}

.notification.show {
    transform: translateX(0);
}

/* ESTA ES LA PARTE IMPORTANTE PARA EL COLOR VERDE */
.notification-success {
    background-color: #d4edda; /* Fondo verde claro */
    border-color: #28a745;      /* Borde verde oscuro */
    color: #155724;             /* Texto verde oscuro */
}

.notification-error {
    background-color: #f8d7da; /* Fondo rojo claro */
    border-color: #dc3545;      /* Borde rojo oscuro */
    color: #721c24;             /* Texto rojo oscuro */
}

.notification i {
    font-size: 1.2rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    margin-left: auto;
    padding: 0 5px;
}
.notification-close:hover {
    opacity: 1;
}
/* Footer - Igual que inicio y proyectos */
footer {
    background: #f0f0f0;
    color: var(--text-color);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

/* Estilos actualizados para los elementos de contacto en el footer */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item i {
    margin-right: 8px;
    min-width: 16px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
}

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

/* ==== RESPONSIVE DESIGN ==== */

/* TABLET (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .form-map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* MOBILE (menos de 768px) */
@media (max-width: 767px) {
    /* Estructuras generales */
    .container {
        padding: 0 15px;
    }

    /* Header responsive */
    .logo img {
        height: 60px;
    }
    
    #header {
        padding: 15px 0;
    }
    
    #menuToggle {
        display: block;
    }
    
    .nav-content {
        display: none;
    }

    /* Mostrar menú móvil cuando está activo */
    .mobile-menu {
        display: flex;
    }

    /* Main content */
    .main-content {
        padding-top: 90px;
    }

    /* Hero Mobile */
    .hero-contact {
        padding: 2.5rem 0;
    }

    .hero-contact h1 {
        font-size: 2rem;
    }

    .hero-contact p {
        font-size: 1rem;
    }

    /* Contact Cards Mobile */
    .contact-methods {
        padding: 3rem 0;
    }

    .contact-methods h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-card {
        max-width: 100%;
        min-width: auto;
        padding: 1.5rem;
    }

    /* Form and Map Mobile */
    .form-map-section {
        padding: 3rem 0;
    }

    .form-map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-column {
        order: 1;
    }

    .form-column {
        order: 2;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Additional Info Mobile */
    .additional-info {
        padding: 3rem 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    /* Footer - 1 column in mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    /* Ajuste para contactos en móvil */
    .contact-item {
        justify-content: center;
    }
}

/* MOBILE EXTRA SMALL (menos de 480px) */
@media (max-width: 479px) {
    .logo img {
        height: 50px;
    }
    
    .hero-contact {
        padding: 2rem 0;
    }

    .hero-contact h1 {
        font-size: 1.75rem;
    }

    .contact-methods,
    .form-map-section,
    .additional-info {
        padding: 2rem 0;
    }

    .contact-card {
        padding: 1.25rem;
        min-width: 240px;
    }

    .card-icon {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .mobile-nav a {
        font-size: 1.4rem;
    }
    
    .contact-btn-mobile {
        padding: 10px 25px;
        font-size: 1.4rem;
    }
}

/* Correcciones para alinear con el estilo móvil de index.html */
@media (max-width: 768px) {
    /* Ocultar elementos duplicados */
    .mobile-menu {
        display: none !important;
    }
    
    /* Corregir estilo del botón de menú */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }
    
    .menu-toggle i {
        font-size: 24px;
        color: var(--text-color);
    }
    
    /* Configurar el nav-content como en index.html */
    .nav-content {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        transition: all 0.3s ease;
        display: flex !important;
    }
    
    .nav-content.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .header-social {
        margin-top: 20px;
    }
    
    /* Alinear estructura del footer con index */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Ajustes para pantallas muy pequeñas */
    .logo img {
        height: 60px;
    }
    
    #header {
        padding: 10px 0;
    }
    
    .form-map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-column, .form-column {
        width: 100%;
    }
    
    .contact-cards {
        flex-direction: column;
    }
    
    .contact-card {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-contact h1 {
        font-size: 1.75rem;
    }
}
/* Estilos para el botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    padding: 15px 25px 10px 20px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float-icon {
    font-size: 32px; /* Tamaño más grande del ícono */
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-text {
    font-size: 16px; /* Texto más grande */
    font-weight: 600;
    white-space: nowrap;
}

/* Estilos responsivos para móviles */
@media (max-width: 767px) {
    .whatsapp-float {
        padding: 12px 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-icon {
        font-size: 28px; /* Aún grande pero adaptado a móvil */
    }
    
    .whatsapp-float-text {
        font-size: 14px;
    }
}

/* Para pantallas muy pequeñas, solo mostrar el ícono */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .whatsapp-float-icon {
        margin-right: 0;
        font-size: 32px;
    }
    
    .whatsapp-float-text {
        display: none;
    }
}
/* Estilos para el chatbot */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
}

.chatbot-toggle {
    display: flex;
    align-items: center;
    background-color: #1a365d;
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.05);
    background-color: #2c4a7c;
}

.chatbot-avatar {
    background-color: #ffffff;
    color: #1a365d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 20px;
}

.chatbot-info {
    display: flex;
    flex-direction: column;
}

.chatbot-name {
    font-weight: 600;
    font-size: 14px;
}

.chatbot-status {
    font-size: 12px;
    color: #8cff7a;
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 320px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 500px;
}

.chatbot-header {
    background-color: #1a365d;
    color: #ffffff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
}

.chatbot-header-avatar {
    background-color: #ffffff;
    color: #1a365d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 20px;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 16px;
}

.chatbot-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.chatbot-messages {
    padding: 15px;
    overflow-y: auto;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.message-container {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
}

.message-bubble {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.bot-message .message-bubble {
    background-color: #f0f2f5;
    color: #333;
    border-bottom-left-radius: 5px;
}

.user-message .message-bubble {
    background-color: #1a365d;
    color: #ffffff;
    border-bottom-right-radius: 5px;
}

.message-bubble p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Estilos para los botones de servicios */
.services-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    padding-left: 0;
    width: 100%;
}

.service-option-btn {
    background-color: #1a365d;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 5px rgba(26, 54, 93, 0.2);
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    max-width: 250px;
}

.service-option-btn:hover {
    background-color: #2c4a7c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.service-option-btn:active {
    transform: translateY(0);
}

/* Estilos para el botón de WhatsApp dentro del chat */
.whatsapp-button-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
    padding-left: 0;
}

.whatsapp-chat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-chat-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-chat-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.chatbot-suggestions {
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    border-top: 1px solid #e9e9e9;
}

.suggestion-btn {
    background-color: #f0f2f5;
    border: none;
    border-radius: 15px;
    padding: 8px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.suggestion-btn:hover {
    background-color: #e0e2e5;
}

.chatbot-input {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-top: 1px solid #e9e9e9;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}

.chatbot-input button {
    background-color: #1a365d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.chatbot-input button:hover {
    background-color: #2c4a7c;
}

/* Responsive styles */
@media screen and (max-width: 767px) {
    .chatbot-window {
        width: 280px;
        left: 0;
        bottom: 70px;
        max-height: 400px;
    }
    
    .chatbot-messages {
        height: 250px;
    }
    
    .chatbot-toggle {
        padding: 8px 15px;
    }
    
    .chatbot-avatar {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .chatbot-name {
        font-size: 13px;
    }
    
    .chatbot-status {
        font-size: 11px;
    }
    
    .whatsapp-chat-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .service-option-btn {
        font-size: 12px;
        padding: 9px 14px;
    }
}