:root {
    --color1: #0086e8;
    --color2: #21abfb;
    --color3: #f1f1f1;
    --color4: #ff0f0e;
    --color5: #ffffff;
}
.clicked {
  transform: scale(0.97);
  opacity: 0.85;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Poppins', Arial, sans-serif;
}

.navbar {
    background: var(--color5);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    margin-bottom: 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    width: 100%;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.elena-titulo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--color1);
    font-weight: 700;
    user-select: none;
    letter-spacing: .5px;
    line-height: 1;
    display: inline-block;
}

.logo-camilla {
    display: flex;
    align-items: center;
}

.navbar-right {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.13rem;
    font-weight: 500;
    color: var(--color1);
    background: transparent;
    border: 2px solid transparent;
    border-radius: 2rem;
    padding: 0.45rem 1.25rem;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    position: relative;
    outline: none;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color5);
    background: var(--color1);
    border: 2px solid var(--color1);
    box-shadow: 0 2px 12px rgba(0, 134, 232, .09);
}

.contacto-btn {
    color: var(--color5);
    background: var(--color4);
    border: 2px solid var(--color4);
    font-weight: 600;
    margin-left: .3rem;
    box-shadow: 0 2px 10px rgba(255, 15, 14, .05);
    transition: all .18s;
}

.contacto-btn:hover,
.contacto-btn:focus {
    background: var(--color5);
    color: var(--color4);
    border: 2px solid var(--color4);
    box-shadow: 0 3px 14px rgba(255, 15, 14, .13);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-left: 1.4rem;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    height: 4px;
    width: 25px;
    background: var(--color1);
    margin: 4px 0;
    border-radius: 2px;
    transition: .3s;
}

.navbar-mobile {
    display: none; }

.hero-camilla {
    width: 100%;
    min-height: 300px;
    height: 36vw;
    max-height: 430px;
    background: url('img/camilla.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(89, 90, 90, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    color: var(--color5);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 4px 32px rgba(0, 0, 0, .17);
    background: rgba(0, 0, 0, 0.14);
    border-radius: 1.5rem;
    padding: 1.2rem 2.5rem;
    margin: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .13);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.section-title {
    font-size: 2rem;
    color: var(--color1);
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.card {
    background: var(--color5);
    border: 1.5px solid var(--color3);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, .09);
    padding: 2rem 1.5rem;
    flex: 1 1 270px;
    min-width: 0;
    max-width: 350px;
    text-align: center;
    transition: transform .14s;
    box-sizing: border-box;
}

.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 6px 32px 0 rgba(0, 134, 232, .16);
    border: 1.5px solid var(--color2);
}

.cta-section {
    margin-bottom: 2.8rem;
}

.cta-card {
    background: var(--color3);
    border-radius: 1.5rem;
    padding: 2.2rem 2.5rem;
    text-align: center;
    box-shadow: 0 2px 16px 0 rgba(0, 134, 232, .06);
    margin: 0 auto 1.5rem auto;
    max-width: 700px;
    border: 1.5px solid var(--color2);
    box-sizing: border-box;
}

.cta-btn {
    background: var(--color4);
    color: var(--color5);
    border: none;
    border-radius: 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    padding: .95rem 2.5rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .09);
    transition: background .18s, transform .13s;
    text-decoration: none;
    margin-top: 1.2rem;
    display: inline-block;
    letter-spacing: .5px;
}

.cta-btn:hover {
    background: var(--color5);
    color: var(--color4);
    border: 2px solid var(--color4);
    transform: scale(1.04);
}

.who-section {
    background: var(--color3);
    border-radius: 2.2rem;
    padding: 2.7rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 14px rgba(0, 134, 232, .04);
}

.who-row {
    display: flex;
    gap: 2.7rem;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.who-img-col {
    flex: 0 0 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--color2);
    background: var(--color5);
}

.who-text-col {
    flex: 1;
    min-width: 220px;
}

.who-text-col h2 {
    color: var(--color1);
    font-size: 1.45rem;
    margin-bottom: .4rem;
}

.who-text-col p {
    font-size: 1.08rem;
    margin: 0;
}

.blocks-section {
    background: var(--color5);
    border-radius: 2rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.blocks-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.block-card {
    background: var(--color3);
    border: 1.5px solid var(--color2);
    border-radius: 1.1rem;
    box-shadow: 0 2px 12px rgba(33, 171, 251, .08);
    padding: 1.2rem 1.1rem;
    min-width: 0;
    max-width: 270px;
    font-weight: 500;
    font-size: 1.11rem;
    text-align: center;
    transition: transform .13s;
    box-sizing: border-box;
}

.block-card:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 12px rgba(33, 171, 251, .18);
}

.faq-section {
    background: var(--color5);
    border-radius: 2.5rem;
    padding: 2.5rem 0 2rem 0;
    margin-bottom: 2rem;
}

.faq-columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-col {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-card {
    background: var(--color3);
    border-radius: 1.1rem;
    padding: 1.4rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 134, 232, .07);
    border-left: 4px solid var(--color1);
    font-size: 1rem;
    font-weight: 500;
    transition: box-shadow .14s;
}

.faq-card strong {
    color: var(--color1);
    display: block;
    margin-bottom: .7rem;
}

.price-section {
    display: flex;
    gap: 2rem;
    background: var(--color3);
    border-radius: 2.5rem;
    padding: 2.5rem 1.5rem;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    flex-wrap: wrap;
}

.price-text {
    flex: 1 1 300px;
    font-size: 1.17rem;
    font-weight: 600;
    color: var(--color1);
    text-align: left;
}

.oferta {
    color: var(--color4);
}

.azul {
    color: var(--color1);
}

.price-card {
    flex: 1 1 320px;
    max-width: 370px;
    background: var(--color5);
    border-radius: 1.7rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 28px rgba(255, 15, 14, .09);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    border: 1.5px solid var(--color4);
    box-sizing: border-box;
}

.price-amount {
    font-size: 2.7rem;
    color: var(--color4);
    font-weight: 700;
    margin-bottom: .3rem;
}

.price-advantages {
    text-align: left;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    padding-left: 0;
}

.price-advantages li {
    list-style: none;
    margin-bottom: .7rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.price-advantages li::before {
    content: "✅";
    color: var(--color1);
    font-size: 1.1rem;
    display: inline-block;
    margin-right: .4rem;
}

.contact-section {
    background: var(--color2);
    color: var(--color5);
    border-radius: 2.5rem;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-btn {
    background: var(--color4);
    color: var(--color5);
    border: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    padding: .9rem 2rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    transition: background .2s, transform .15s;
    text-decoration: none;
    margin-top: 1.2rem;
    display: inline-block;
}

.contact-btn:hover {
    background: var(--color5);
    color: var(--color4);
    border: 2px solid var(--color4);
    transform: scale(1.04);
}

.galeria-img {
    width: 100%;
    border-radius: 0.7rem;
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
    object-fit: cover;
}

footer {
    text-align: center;
    color: #777;
    padding: 1.5rem 0;
    background: var(--color3);
    font-size: .95rem;
    border-radius: 2rem 2rem 0 0;
}
@media (max-width: 900px) {
    .navbar-content {
        padding: 0.8rem 1vw;
    }

    .elena-titulo {
        font-size: 1.45rem;
    }

    .navbar-right {
        gap: 1.4rem;
    }
}

@media (max-width: 700px) {
    .navbar-content {
        padding: 0.6rem 0.6rem;
    }

    .navbar-right {
        display: none !important;
    }

    .navbar-toggle {
        display: flex !important;
    }

    .elena-titulo {
        font-size: 1.1rem;
    }

    .navbar-mobile {
        display: none;
        flex-direction: column;
        background: var(--color5);
        width: 100vw;
        box-shadow: 0 6px 28px rgba(0, 0, 0, .09);
        position: absolute;
        top: 62px;
        left: 0;
        padding: 1.2rem 0 1.2rem 0;
        z-index: 111;
        gap: 1.4rem;
        align-items: center;
        border-top: 2px solid var(--color3);
    }

    .navbar-mobile.open {
        display: flex;
        animation: fadein .3s;
    }
}

@media (max-width: 480px) {
    .elena-titulo {
        font-size: 1.05rem;
    }

    .navbar-toggle {
        width: 30px;
        height: 30px;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}
.who-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 2rem 0;
}

.who-img-col {
    flex: 0 0 180px;
    display: flex;
    justify-content: center;
}

.who-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color1);
    box-shadow: 0 2px 16px rgba(0, 134, 232, .12);
    background: var(--color3);
}

.who-text-col {
    flex: 1;
    font-size: 1.08rem;
    color: #444;
}

/* RESPONSIVE: en móvil, la imagen arriba y el texto debajo */
@media (max-width: 800px) {
    .who-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .who-img-col {
        justify-content: center;
        margin-bottom: 0.7rem;
    }

    .who-text-col {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
/* Fade-in desde abajo para cada bloque al hacer scroll */
.fade-in {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition:
        opacity 0.7s cubic-bezier(.35, 1.35, .7, 1),
        transform 0.7s cubic-bezier(.35, 1.35, .7, 1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Cards: levanta al hacer hover */
.card,
.block-card,
.cta-card,
.faq-card,
.price-card {
    transition: box-shadow 0.25s cubic-bezier(.21, 1.29, .86, .89), transform 0.25s cubic-bezier(.21, 1.29, .86, .89);
}

.card:hover,
.block-card:hover,
.cta-card:hover,
.faq-card:hover,
.price-card:hover {
    box-shadow: 0 8px 32px rgba(33, 171, 251, 0.08), 0 2px 12px rgba(0, 134, 232, 0.08);
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
}

/* Animación de "escalado suave" para la imagen de la sección SOBRE MÍ */
.who-img {
    transition: box-shadow 0.4s, transform 0.4s;
}

.who-img:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 6px 32px rgba(33, 171, 251, 0.18);
}
.btn-whatsapp,
.btn-scroll-top {
    position: fixed;
    right: 20px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 26px;
    text-align: center;
    line-height: 52px;
    color: white;
    background-color: #25D366;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    text-decoration: none;
}

.btn-whatsapp:hover,
.btn-scroll-top:hover {
    transform: scale(1.1);
}

.btn-whatsapp {
    bottom: 20px;
    background-color: #25D366;
}

.btn-scroll-top {
    bottom: 90px;
    background-color: var(--color1);
}
/* --- BOTÓN WHATSAPP FLOTANTE --- */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 22px;
    z-index: 2050;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 3px 16px rgba(32, 230, 60, 0.13);
    transition: background .18s, transform .13s;
}

.whatsapp-float:hover {
    background: #20b955;
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        right: 13px;
        bottom: 13px;
    }
}

/* --- BOTÓN SUBIR ARRIBA --- */
#toTop {
    position: fixed;
    right: 22px;
    bottom: 88px;
    z-index: 2050;
    background: #fff;
    color: #e14a77;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.23rem;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(50, 60, 120, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s;
}

#toTop.show {
    opacity: 1;
    pointer-events: all;
}

#toTop:hover {
    background: #e14a77;
    color: #fff;
}