/* ==========================================================================
   RESET E CONFIGURAÇÕES GERAIS
   ========================================================================== */
:root {
    --primary-pink: #FFF0F2;
    --dark-pink: #F4C2C9;
    --peacock-blue: #0A2E36;
    --gold-premium: #D4AF37;
    --gold-light: #F3E5AB;
    --text-dark: #2C2C2C;
    --text-light: #6E6E6E;
    --white-clean: #FFFFFF;
    --nude-champagne: #FDFBF7;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-alt: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FDFBF7;
    color: #2C2C2C;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }

/* ==========================================================================
   PRELOADER & CURSOR PERSONALIZADO
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #0A2E36;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    font-family: 'Playfair Display', serif;
    color: #F3E5AB;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.loader-bar {
    width: 120px; height: 2px;
    background-color: #D4AF37;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block;
    width: 40px; height: 100%;
    background: #FFFFFF;
    animation: loadingMove 1.5s infinite ease-in-out;
}
@keyframes loadingMove {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(130px); }
}

/* ==========================================================================
   COMPONENTES PREMIUM (BOTÕES & ELEMENTOS)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
}
.btn-gold {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}
.btn-outline {
    background: transparent;
    color: #0A2E36;
    border: 1px solid #0A2E36;
}
.btn-outline:hover {
    background-color: #0A2E36;
    color: #FFFFFF;
    transform: translateY(-3px);
}
.btn-block { width: 100%; justify-content: center; }

.section-header { margin-bottom: 60px; }
.section-tag {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #D4AF37;
    display: block;
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #0A2E36;
    font-weight: 400;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #6E6E6E;
    max-width: 600px;
    margin: 15px auto 0;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
}

/* ==========================================================================
   1. HEADER / MENU PRINCIPAL
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
    padding: 25px 0;
}
#main-header.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #0A2E36;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}
.nav-link:hover, .nav-link.active { color: #D4AF37; }

.menu-toggle { display: none; background: none; border: none; }

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(140deg, #FFF0F2 0%, #FDFBF7 100%);
    padding-top: 120px;
    overflow: hidden;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 15px;
    display: block;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.15;
    color: #0A2E36;
    margin-bottom: 25px;
}
.hero-title span { font-style: italic; font-weight: 600; }
.hero-text {
    font-size: 1.1rem;
    color: #6E6E6E;
    margin-bottom: 35px;
    max-width: 550px;
}
.hero-buttons { display: flex; gap: 20px; margin-bottom: 50px; }
.hero-badges {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 30px;
}
.badge-item { display: flex; flex-direction: column; }
.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #0A2E36;
    font-weight: 600;
}
.badge-label { font-size: 0.8rem; color: #6E6E6E; }

.hero-image-container { position: relative; display: flex; justify-content: center; }
.hero-ellipse-bg {
    position: absolute;
    width: 110%; height: 110%;
    background: radial-gradient(circle, #F4C2C9 0%, transparent 70%);
    opacity: 0.3;
    top: -5%;
}
.hero-img-wrapper {
    position: relative;
    width: 380px; height: 500px;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   3. SOBRE PRISCYLLA PORTUGAL
   ========================================================================== */
.sobre-container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.sobre-image { position: relative; }
.sobre-img-box { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.sobre-img-box img { width: 100%; display: block; }
.sobre-p { color: #6E6E6E; margin-bottom: 20px; font-size: 1rem; }
.sobre-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.sobre-card {
    background-color: #FFFFFF;
    padding: 25px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.sobre-card i { color: #D4AF37; font-size: 1.5rem; margin-bottom: 15px; display: block; }
.sobre-card h4 { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; margin-bottom: 8px; }
.sobre-card p { font-size: 0.85rem; color: #6E6E6E; }

/* ==========================================================================
   4. CURSOS
   ========================================================================== */
.cursos-section { background-color: #FFF0F2; }
.cursos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.curso-card {
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.curso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 194, 201, 0.4);
}
.curso-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background-color: rgba(214, 175, 55, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: #D4AF37; font-size: 1.5rem; margin-bottom: 25px;
}
.curso-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #0A2E36; margin-bottom: 15px; }
.curso-card p { color: #6E6E6E; font-size: 0.95rem; margin-bottom: 25px; }
.curso-link {
    font-family: 'Montserrat', sans-serif; font-size: 0.85rem; text-transform: uppercase; text-decoration: none;
    color: #0A2E36; font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
}
.curso-card.featured {
    border: 2px solid #D4AF37;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(253, 251, 247, 0.9) 100%);
}
.curso-badge {
    position: absolute; top: 20px; right: 20px;
    background-color: #D4AF37; color: #FFFFFF;
    font-family: 'Montserrat', sans-serif; font-size: 0.7rem; padding: 5px 15px; border-radius: 20px;
}

/* ==========================================================================
   5. ATENDIMENTOS (MUDANÇA 1)
   ========================================================================== */
.atendimentos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
a.atendimento-item {
    background-color: #FFFFFF;
    padding: 25px; text-align: center; border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    display: block;
}
a.atendimento-item:hover {
    background-color: #0A2E36;
    border-color: #D4AF37;
    transform: scale(1.03);
}
a.atendimento-item span {
    font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 500; color: #0A2E36;
    transition: all 0.3s ease;
}
a.atendimento-item:hover span { color: #FFFFFF; }

/* ==========================================================================
   6. DEPOIMENTOS EM COLUNAS DUPLAS (MUDANÇA 3)
   ========================================================================== */
.depoimentos-section {
    background: linear-gradient(180deg, #FDFBF7 0%, #FFF0F2 100%);
}
.depoimentos-container-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.depoimentos-block {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
}
.block-title {
    font-family: 'Playfair Display', serif;
    color: #0A2E36;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.block-title i { color: #D4AF37; }
.slider-wrapper-dep {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.dep-slider {
    position: relative;
    width: 100%; height: 100%;
}
.depoimento-card-v2 {
    position: absolute;
    width: 100%;
    padding: 25px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
    pointer-events: none;
}
.depoimento-card-v2.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.stars { color: #D4AF37; margin-bottom: 15px; font-size: 0.8rem; }
.depoimento-card-v2 p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: #0A2E36;
    margin-bottom: 15px;
}
.depoimento-card-v2 h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #2C2C2C;
}
.dep-controls {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 5px; right: 5px;
    z-index: 5;
}
.dep-btn {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.05);
    width: 35px; height: 35px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #0A2E36; transition: all 0.3s ease;
}
.dep-btn:hover { background-color: #0A2E36; color: #FFFFFF; }



/* ==========================================================================
   7. LOCALIZAÇÃO (MUDANÇA 4)
   ========================================================================== */
.localizacao-container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.address-details { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.address-item { display: flex; gap: 15px; align-items: flex-start; text-decoration: none; color: inherit; }
.address-item i { color: #D4AF37; font-size: 1.2rem; margin-top: 3px; }
.address-item h5 { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; margin-bottom: 4px; }
.address-item p { font-size: 0.9rem; color: #6E6E6E; }
.clickable-phone { transition: all 0.3s ease; padding: 10px; border-radius: 8px; }
.clickable-phone:hover { background-color: rgba(244, 194, 201, 0.3); transform: translateX(5px); }
.map-wrapper iframe{ width:100%; height:100%; border:none; display:block; }

/* ==========================================================================
   8. CONTATO
   ========================================================================== */
.contato-section { background-color: #FFFFFF; }
.contato-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.contato-form-wrapper { padding: 50px; box-shadow: 0 20px 50px rgba(0,0,0,0.03); }
.contato-form-wrapper h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 10px; color: #0A2E36; }
.contato-form-wrapper p { color: #6E6E6E; font-size: 0.9rem; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, textarea {
    width: 100%; padding: 16px 20px; background-color: #FDFBF7;
    border: 1px solid rgba(0,0,0,0.05); border-radius: 8px;
    font-size: 0.9rem; transition: all 0.3s ease; color: #2C2C2C;
}
input:focus, textarea:focus { outline: none; border-color: #D4AF37; background-color: #FFFFFF; }
.social-connect h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: #0A2E36; margin: 15px 0 25px; }
.social-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.social-box {
    display: flex; align-items: center; gap: 12px; padding: 18px; border-radius: 10px;
    background-color: #FDFBF7; text-decoration: none; color: #0A2E36;
    font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 500; transition: all 0.3s ease;
}
.social-box:hover { background-color: #FFF0F2; transform: translateY(-2px); }

/* ==========================================================================
   9. FOOTER E FLUTUANTE
   ========================================================================== */
footer { background-color: #0A2E36; color: rgba(255,255,255,0.7); padding-top: 60px; }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #FFFFFF; text-decoration: none; font-weight: 600; display: block; margin-bottom: 15px; }
.footer-quote { font-style: italic; font-family: 'Playfair Display', serif; color: #F3E5AB; }
footer h4 { color: #FFFFFF; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer ul a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; }
footer ul a:hover { color: #D4AF37; padding-left: 5px; }
.f-social-icons { display: flex; gap: 15px; }
.f-social-icons a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #FFFFFF; transition: all 0.3s ease; }
.f-social-icons a:hover { background-color: #D4AF37; border-color: #D4AF37; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; font-size: 0.8rem; }
.footer-bottom-flex { display: flex; justify-content: space-between; }

.whatsapp-floating {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background-color: #25D366; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); z-index: 998; text-decoration: none;
}
.ping-effect {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    border: 1px solid #25D366; animation: ping 2s infinite; pointer-events: none;
}
@keyframes ping { 75%, 100% { transform: scale(1.4); opacity: 0; } }

/* ==========================================================================
   SCROLL REVEAL E RESPONSIVIDADE
   ========================================================================== */
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .hero-container, .sobre-container, .localizacao-container, .contato-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-container { order: -1; }
    .hero-img-wrapper { width: 320px; height: 420px; }
    .hero-title { font-size: 3rem; }
    .depoimentos-container-box { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background-color: #FDFBF7; padding: 100px 40px; transition: all 0.4s ease;
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; gap: 25px; }
    .btn-header { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
    .slider-wrapper-dep { height: 260px; }
}

/* ==========================================================================

   RESPONSIVIDADE PREMIUM COMPLETA
   ADICIONE NO FINAL DO SEU CSS

   ========================================================================== */


/* ===== AJUSTES GERAIS ===== */

.curso-card,
.depoimento-card-v2,
.atendimento-item{
    width: 100%;
}

.nav-menu{
    z-index: 9999;
}


/* ===== MAPA RESPONSIVO ===== */

.map-wrapper iframe{
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    border-radius: 20px;
}

@media (max-width:768px){

    .map-wrapper iframe{
        height: 300px;
    }

}


/* ===== TABLETS ===== */

@media (max-width: 1024px) {

    .hero-container,
    .sobre-container,
    .localizacao-container,
    .contato-container{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-container{
        order: -1;
    }

    .hero-img-wrapper{
        width: 320px;
        height: 420px;
    }

    .hero-title{
        font-size: 3rem;
    }

    .depoimentos-container-box{
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .menu-toggle{
        display: block;
    }

    .nav-menu{
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #FDFBF7;
        padding: 100px 40px;
        transition: all 0.4s ease;
    }

    .nav-menu.active{
        right: 0;
    }

    .nav-menu ul{
        flex-direction: column;
        gap: 25px;
    }

    .btn-header{
        display: none;
    }

    .form-row{
        grid-template-columns: 1fr;
    }

    .footer-container{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-wrapper-dep{
        height: 260px;
    }

    .hero-section{
        text-align: center;
        padding-top: 140px;
    }

    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-text{
        margin: auto auto 35px;
    }

    .hero-badges{
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-padding{
        padding: 70px 0;
    }

    .section-title{
        font-size: 2.3rem;
    }

    .social-links-grid{
        grid-template-columns: 1fr;
    }

}


/* ===== CELULARES PEQUENOS ===== */

@media (max-width: 480px){

    .hero-title{
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-title{
        font-size: 2rem;
    }

    .hero-buttons{
        flex-direction: column;
        width: 100%;
    }

    .btn{
        width: 100%;
        justify-content: center;
    }

    .hero-badges{
        flex-direction: column;
        gap: 20px;
    }

    .contato-form-wrapper{
        padding: 30px 20px;
    }

    .social-links-grid{
        grid-template-columns: 1fr;
    }

    .header-container{
        padding: 0 20px;
    }

    .hero-img-wrapper{
        width: 100%;
        max-width: 300px;
        height: 400px;
    }

    .section-subtitle{
        font-size: 0.95rem;
    }

    .hero-text{
        font-size: 1rem;
    }

    .badge-number{
        font-size: 1.5rem;
    }

    .badge-label{
        font-size: 0.75rem;
    }

    .contato-form-wrapper h3{
        font-size: 1.6rem;
    }

    .social-connect h2{
        font-size: 2rem;
    }

    .whatsapp-floating{
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

}