﻿body {
    padding-top: 0px;
    padding-bottom: 0px;
    background: #faf7f2;
    font-family: 'Montserrat', sans-serif;
}

/* Encabezado y menú */
.caracol-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5rem 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    min-height: 62px;
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: #1c1c1c;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    line-height: 1;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.03rem;
    height: 100%;
    margin-bottom: 0;
}

    .menu a {
        text-decoration: none;
        color: #222;
        font-size: 1.02rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        transition: color 0.2s;
        position: relative;
        line-height: 1.4;
        display: flex;
        align-items: center;
        padding: 0 2px;
        height: 60px; /* alineado vertical */
        margin: 0 12px; /* separacion horizontal */
    }

        .menu a:hover {
            color: #b2965c;
        }

        .menu a::after {
            content: "";
            display: block;
            margin: 0 auto;
            height: 2px;
            width: 0;
            background: #b2965c;
            transition: 0.3s;
        }

        .menu a:hover::after {
            width: 80%;
        }

    .menu .dropdown {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
    }

.dropdown-menu {
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(60,60,60,0.08);
    margin-top: 2px;
    padding: 0.7rem 0.4rem;
}

    .dropdown-menu a {
        padding: 8px 18px;
        border-radius: 4px;
        color: #222;
        display: block;
        font-size: 1rem;
    }

        .dropdown-menu a:hover {
            background: #faf6ea;
            color: #b2965c;
        }

.redes {
    display: flex;
    align-items: center;
}

    .redes .social-icon {
        color: #222;
        font-size: 1.25rem;
        margin-left: 18px;
        transition: color 0.2s, transform 0.2s;
        border-radius: 50%;
        padding: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        .redes .social-icon:hover {
            color: #b2965c;
            background: #f3f0e5;
            transform: scale(1.17);
            box-shadow: 0 2px 8px 0 rgba(178, 150, 92, 0.07);
        }

/* HERO */
.hero-caracol {
    background-size: cover;
    background-position: center;
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(32, 32, 32, 0.55);
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-caracol h1 {
    color: #fff;
    font-size: 2.6rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.destacado {
    color: #b2965c;
    font-weight: bold;
}

.hero-caracol h2 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: 0;
}

/* Servicios Destacados */
.servicios-caracol {
    background: #fff;
    padding: 2.2rem 0 1.8rem 0;
    display: flex;
    justify-content: center;
}

.servicios-row {
    display: flex;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.servicio-card {
    background: #f8f6f2;
    border-radius: 8px;
    box-shadow: 0 4px 18px 0 rgba(40,30,10,0.10);
    padding: 2.1rem 1.2rem 1.4rem 1.2rem;
    text-align: center;
    flex: 1 1 0px;
    min-width: 220px;
    transition: box-shadow 0.23s, border 0.23s;
    border: 1.5px solid #e7dac6;
}

    .servicio-card:hover {
        box-shadow: 0 8px 28px 0 rgba(178, 150, 92, 0.16);
        border: 1.7px solid #b2965c;
    }

    .servicio-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.26rem;
        color: #a1813e;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .servicio-card p {
        font-size: 1rem;
        color: #3e3e3e;
        margin-bottom: 1.2rem;
    }

    .btn-servicio, .servicio-card .btn, .newsletter-form button {
        padding: 0.7rem 1.7rem;
        background: #b2965c;
        color: #fff;
        border-radius: 2px;
        border: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        text-decoration: none;
        transition: background 0.2s, border 0.2s, color 0.2s;
        cursor: pointer;
        display: inline-block;
        margin-top: 0.2rem;
        box-shadow: 0 2px 6px 0 rgba(178,150,92,0.06);
    }

        .btn-servicio:hover, .servicio-card .btn:hover, .newsletter-form button:hover {
            background: #91763d;
            color: #fff;
            border: 1.5px solid #b2965c;
        }

/* Newsletter elegante */
.footer-newsletter {
    background: #222;
    color: #fff;
    padding: 2.2rem 0 1.4rem 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
    border-bottom: 1.2px solid #b2965c;
}

    .footer-newsletter .newsletter-title {
        font-size: 1.39rem;
        letter-spacing: 1.1px;
        margin-bottom: 10px;
        color: #fff;
        font-weight: bold;
    }

    .footer-newsletter .newsletter-desc {
        font-size: 1.08rem;
        margin-bottom: 17px;
    }

.newsletter-form {
    margin-bottom: 8px;
}

    .newsletter-form input[type="email"] {
        padding: 12px 18px;
        border: 1.5px solid #e7dac6;
        border-radius: 2px;
        margin-right: 8px;
        width: 240px;
        font-size: 1rem;
        transition: border 0.2s;
    }

        .newsletter-form input[type="email"]:focus {
            outline: none;
            border: 1.5px solid #b2965c;
        }

    .newsletter-form button {
        padding: 12px 30px;
        margin-top: 0;
    }

/* Footer */
.footer-caracol {
    background: #222;
    color: #eee;
    padding: 0 0 1.2rem 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.footer-links {
    margin: 1.2rem 0 0.6rem 0;
}

    .footer-links a {
        color: #eee;
        margin: 0 18px;
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: #b2965c;
        }

.footer-copy {
    color: #c2b280;
    font-size: 0.95rem;
    margin-top: 7px;
}

/* Responsive ajustes */
@media (max-width: 1020px) {
    .container-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        width: 96%;
    }

    .footer-links a {
        margin: 0 10px;
    }

    .redes .social-icon {
        font-size: 1.1rem;
        margin-left: 12px;
        padding: 5px;
    }
}

@media (max-width: 900px) {
    .servicios-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .servicio-card {
        min-width: 0;
    }

    .footer-links a {
        margin: 0 8px;
    }
}

@media (max-width: 700px) {
    .container-header, .servicios-row {
        flex-direction: column;
        align-items: center;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .menu {
        margin: 10px 0;
    }

        .menu a {
            margin: 0 8px;
            font-size: 0.98rem;
            height: 48px;
        }

    .footer-newsletter .newsletter-title {
        font-size: 1.05rem;
    }

    .newsletter-form input[type="email"] {
        width: 150px;
        font-size: 0.97rem;
    }

    .newsletter-form button {
        padding: 9px 18px;
        font-size: 0.97rem;
    }
}

/* Estilo fancy para cada paquete en vista detallada o pública */
.paquete-servicio {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

    .paquete-servicio img {
        max-width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .paquete-servicio h2,
    .paquete-servicio h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: #222;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .paquete-servicio ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }

        .paquete-servicio ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

            .paquete-servicio ul li::before {
                content: "✔";
                position: absolute;
                left: 0;
                color: #9b59b6;
                font-weight: bold;
            }

    .paquete-servicio .precio {
        font-size: 24px;
        font-weight: bold;
        color: #c0392b;
        margin-top: 20px;
        display: inline-block;
    }

/* ===========================
   BOTÓN FLOTANTE DEL CHAT
   =========================== */
.chat-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #29b6f6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}

    .chat-bubble img,
    .chat-bubble svg {
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }

/* --- MÓVIL: CENTRAR Y HACER MÁS GRANDE EL BOTÓN --- */
@media (max-width: 700px) {
    .chat-bubble {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        bottom: 20px;
        width: 80px;
        height: 80px;
        /* Animación pulse en móvil (opcional) */
        animation: pulse 2s infinite;
    }

        .chat-bubble img,
        .chat-bubble svg {
            width: 54px;
            height: 54px;
        }
}

/* Animación pulse para el botón (opcional, visual atractivo) */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(41,182,246,0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(41,182,246,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(41,182,246,0.4);
    }
}


