/* Estilos para PawSpa - Peluquería Canina Premium */

/* Reseteo y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fdf2f8 0%, #e0f2fe 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 15px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(0px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    font-family: 'League Spartan', sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Ocultar el botón de reserva en móviles */
.desktop-only {
    display: none;
}

@media (min-width: 769px) {
    .desktop-only {
        display: inline-block;
    }
    
    .logo-img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: 120px;
        height: 90px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover {
    color: #43A4FB;
}

.cta-button {
    background: #43A4FB;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(67, 164, 251, 0.3);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Optimizado para móvil */
.hero {
    margin-top: 100px;
    padding: 50px 0 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: calc(75vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    margin-top: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: white;
    padding: 0 0px;
}

.hero h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero .highlight {
    color: #43A4FB;
}

.hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500 ;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background: #43A4FB;
    color: white;
    padding: 17px 15px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(67, 164, 251, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 17px 15px;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header .highlight {
    color: #43A4FB;
}

.section-header p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 21px;
    color: white;
}

.service-card:nth-child(1) .service-icon { background: #43A4FB; }
.service-card:nth-child(2) .service-icon { background: #43A4FB; }
.service-card:nth-child(3) .service-icon { background: #43A4FB; }
.service-card:nth-child(4) .service-icon { background: #43A4FB; }
.service-card:nth-child(5) .service-icon { background: #43A4FB; }
.service-card:nth-child(6) .service-icon { background: #43A4FB; }

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #43A4FB;
}

.service-button {
    background: #f3f4f6;
    color: #374151;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #dbeafe;
    color: #43A4FB;
}

/* About Section */
.about {
    padding: 35px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #f0f9ff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 25px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text .highlight {
    color: #43A4FB;
}

.about-text p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.feature:nth-child(1) .feature-icon { background: #43A4FB; }
.feature:nth-child(2) .feature-icon { background: #43A4FB; }
.feature:nth-child(3) .feature-icon { background: #43A4FB; }
.feature:nth-child(4) .feature-icon { background: #43A4FB; }

.feature-text h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Gallery Section */
.gallery {
    padding: 10px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(67, 164, 251, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial p {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
}

.author-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #f0f9ff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item:nth-child(2) .contact-icon { background: #43A4FB; }
.contact-item:nth-child(3) .contact-icon { background: #43A4FB; }
.contact-item:nth-child(4) .contact-icon { background: #43A4FB; }
.contact-item:nth-child(5) .contact-icon { background: #43A4FB; }

.contact-details h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #6b7280;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #43A4FB;
    box-shadow: 0 0 0 3px rgba(67, 164, 251, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    background: #43A4FB;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(67, 164, 251, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #43A4FB;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #43A4FB;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Service Detail Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #43A4FB;
}

.modal-body {
    padding: 2rem;
}

.service-packages {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.package {
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package.selected {
    border-color: #43A4FB;
    background: #dbeafe;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.package h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.package-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #43A4FB;
}

.package-features {
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.package-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

/* SMS Floating Button */
.sms-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #43A4FB;
    border-radius: 50%;
    display: none; /* Solo visible en móviles */
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(67, 164, 251, 0.4);
    transition: all 0.3s ease;
    z-index: 1500;
    animation: pulse 2s infinite;
    /* Optimizado para touch en móviles */
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
    cursor: pointer;
}

.sms-floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(67, 164, 251, 0.6);
}

/* Efecto específico para touch en móviles */
.sms-floating-button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(67, 164, 251, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(67, 164, 251, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(67, 164, 251, 0.4);
    }
}

/* ============================================
   LOVING LATHER CHATBOT WIDGET - PROFESSIONAL DESIGN
   Brand color: #43A4FB - No emojis
   ============================================ */

/* Chatbot Container */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Chat Button */
.chatbot-toggle-btn {
    width: 65px;
    height: 65px;
    background: #43A4FB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(67, 164, 251, 0.4);
    transition: all 0.3s ease;
    animation: chatbotPulse 4s infinite;
    position: relative;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(67, 164, 251, 0.6);
}

.chatbot-toggle-btn svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

@keyframes chatbotPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(67, 164, 251, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(67, 164, 251, 0.7);
    }
}

/* Chat Window */
.chatbot-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 400px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chatbot-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Chat Header */
.chatbot-header {
    background: #43A4FB;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-radius: 20px 20px 0 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.header-text p {
    font-size: 13px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.close-chatbot {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.close-chatbot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.close-chatbot svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Chat Messages Area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #e9ecef;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #43A4FB;
    border-radius: 3px;
}

/* Message Styles */
.bot-message {
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 20px 20px 20px 5px;
    max-width: 85%;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    animation: messageSlide 0.3s ease;
    font-size: 14px;
    line-height: 1.5;
}

.user-message {
    background: #43A4FB;
    color: white;
    padding: 15px 20px;
    border-radius: 20px 20px 5px 20px;
    max-width: 85%;
    align-self: flex-end;
    box-shadow: 0 2px 8px rgba(67, 164, 251, 0.2);
    animation: messageSlide 0.3s ease;
    font-size: 14px;
    line-height: 1.5;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 6px;
    padding: 15px 20px;
    background: white;
    border-radius: 20px 20px 20px 5px;
    align-self: flex-start;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #43A4FB;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Main Menu Buttons */
.main-menu-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
    padding: 0 5px;
}

.menu-button {
    background: white;
    border: 2px solid #43A4FB;
    color: #43A4FB;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-button:hover {
    background: #43A4FB;
    color: white;
    border-color: #43A4FB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 164, 251, 0.3);
}

.menu-button-icon {
    font-size: 18px;
}

/* Chat Input Area */
.chatbot-input-area {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chatbot-input {
flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 22px;
    padding: 12px 18px;
    font-size: 14px;
    font-family: 'inherit', sans-serif;
    outline: none;
    transition: border .3s;
    background: #f8f9fa;
}

.chatbot-input:focus {
    border-color: #43A4FB;
    box-shadow: 0 0 0 3px rgba(67, 164, 251, 0.1);
    background: white;
}

.chatbot-input::placeholder {
    color: #adb5bd;
}

.chatbot-send-btn {
    background: #43A4FB;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(67, 164, 251, 0.3);
}

.chatbot-send-btn:hover {
    background: #3291e8;
    transform: scale(1.05);
}

.chatbot-send-btn svg {
    width: 22px;
    height: 22px;
    color: white;
    margin-left: 2px;
}

.chatbot-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .chatbot-widget {
        right: 15px;
        bottom: 15px;
    }
    
    .chatbot-window {
        width: calc(100vw - 30px);
        height: 70vh;
        right: 0;
        bottom: 85px;
    }
    
    .chatbot-toggle-btn {
        width: 58px;
        height: 58px;
    }
    
    .main-menu-container {
        gap: 8px;
    }
    
    .menu-button {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* Mostrar botón SMS solo en dispositivos móviles */
@media (max-width: 768px) {
    .sms-floating-button {
        display: flex;
    }
}

/* Ajustes específicos para móviles pequeños */
@media (max-width: 480px) {
    .sms-floating-button {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 25px;
    }
    
    .section-header h2 {
        font-size: 25px;
    }
    
    .about-text h2 {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header optimizado para móvil */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        border-radius: 0 0 10px 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .mobile-menu {
        display: flex;
    }

    .cta-button {
        display: inline-block;
        padding: 5px 10px;
        font-size: 0.9rem;
    }

    /* Hero optimizado para móvil */
    .hero {
        padding: 120px 0 40px;
        min-height: calc(100vh - 70px);
    }

    .hero h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    /* Services grid optimizado */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-footer {
        justify-content: space-between;
        align-items: center;
    }

    /* About section optimizado */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature {
        justify-content: center;
        text-align: center;
    }

    /* Gallery optimizado */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    /* Contact optimizado */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer optimizado */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Modal optimizado */
    .modal.active {
        padding: 0.5rem;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-header,
    .modal-body {hero
        padding: 1.5rem;
    }

    /* Secciones generales */
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Ajustes para pantallas muy pequeñas */
    .hero {
        margin-top: 40px;
        padding: 140px 0 30px;
        min-height: calc(75vh - 60px);
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .service-card {
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .modal-header,
    .modal-body {
        padding: 1rem;
    }

    .container {
        padding: 0 10px;
    }
}

/* Chatbot Action Buttons Styles */
.message-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.action-button {
    flex: 1;
    min-width: 140px;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ask-again-btn {
    background: white;
    color: #43A4FB;
    border: 2px solid #43A4FB;
}

.ask-again-btn:hover {
    background: #43A4FB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 164, 251, 0.3);
}

.contact-btn {
    background: #43A4FB;
    color: white;
}

.contact-btn:hover {
    background: #3B94E3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 164, 251, 0.3);
}

@media (max-width: 480px) {
    .message-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .action-button {
        width: 100%;
        min-width: auto;
    }
}



/* Quick Questions Container */
.quick-questions-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
    animation: slideUp 0.3s ease;
}

.quick-question-btn {
    background: white;
    border: 2px solid #43A4FB;
    color: #43A4FB;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.quick-question-btn:hover {
    background: #43A4FB;
    color: white;
    border-color: #43A4FB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 164, 251, 0.3);
}

/* Book Now Button */
.book-now-btn {
    background: linear-gradient(135deg, #43A4FB 0%, #3B94E3 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 5px;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 164, 251, 0.4);
    background: linear-gradient(135deg, #3B94E3 0%, #2B7BC4 100%);
}

@media (max-width: 480px) {
    .quick-question-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .book-now-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Price List Button */
.price-list-btn {
    background: linear-gradient(135deg, #43A4FB 0%, #3B94E3 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 5px;
}

.price-list-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 164, 251, 0.4);
    background: linear-gradient(135deg, #3B94E3 0%, #2B7BC4 100%);
}

@media (max-width: 480px) {
    .price-list-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}
