/* =====================================================
   PROJETO DR. NICOLE — style.css
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Dancing+Script:wght@600;700&family=Roboto:wght@400;500;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-start: #0062ff;
    --green-mid: #1ed53f;
    --green-dark: #0044ff;
    --white: #ffffff;
    --text-muted: #999A83;
    --text-light: #DCDCDC;
    --card-bg: #000000;
    --section-bg: #000000;
    --footer-bg: #030000;

    --font-heading: 'Gotham Condensed', 'Oswald', sans-serif;
    --font-main: 'Sora', 'Roboto', sans-serif;
    --font-list: 'Gotham Condensed', 'Oswald', sans-serif;
    --font-script: 'New icon script', 'Yellow Peas', 'Dancing Script', cursive;

    --fundo-texto-destaque: rgba(245, 5, 56, 0.22);
    --cor-bordas-esq-dir: #FF018F;
    --background-texto: linear-gradient(90deg, #FC0294 0%, #F60435 100%);
    --fundo-circulos: #FF018F;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #111;
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

/* =====================================================
   LAYOUT PRINCIPAL
   ===================================================== */
.mobile-wrapper {
    width: 100%;
    /* Default limit was 480px, but now adapting for all */
    max-width: 480px;
    background: var(--card-bg);
    position: relative;
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 100svh;
    background-image: url('img/VDF_6019.jpg');
    /* Fundo padrão Mobile */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.35) 60%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero>*:not(.blur) {
    position: relative;
    z-index: 2;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 8px 18px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-muted);
    white-space: nowrap;
    animation: pisca 1.5s infinite;
    box-shadow: 0px 0px 21px -6px rgba(255, 215, 0, 0.6);
}

.live-dot {
    color: #25D366;
    font-size: 10px;
    animation: pulsingOpacity 0.5s infinite linear alternate;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: auto;
    padding-bottom: 30px;
    flex: 1;
    justify-content: flex-end;
    width: 100%;
}

.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-title {
    font-family: var(--font-script);
    font-size: 52px;
    line-height: 1.1em;
    font-weight: normal;
    color: #ffffff;
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 5px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    max-width: 100%;
    padding: 0 15px;
    text-align: center;
}

.hero-tagline {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

/* ── BOTÃO CTA (cinza metalizado) ── */
.cta-wrapper {
    padding: 11px;
    border: 1px solid rgba(180, 180, 180, 0.4);
    border-radius: 10px;
    align-self: center;
}

.cta-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background-image: linear-gradient(131deg, #9E9E9E 0%, #616161 50%, #424242 100%);
    border-radius: 10px;
    padding: 16px 20px;
    text-transform: none;
    border: none;
    cursor: pointer;
    transition: filter 0.3s, transform 0.2s;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.5);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    50% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.cta-button:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
}

.cta-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
}

/* =====================================================
   DIVISOR HORIZONTAL
   ===================================================== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 10px 0;
    background-color: transparent;
}

.section-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.section-divider .diamond {
    width: 6px;
    height: 6px;
    background-color: rgba(200, 200, 200, 0.6);
    transform: rotate(45deg);
    margin: 0 10px;
}

/* =====================================================
   SEÇÃO LINKS IMPORTANTES
   ===================================================== */
.links-section {
    background: var(--section-bg);
    padding: 40px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.section-header {
    display: flex;
    justify-content: center;
}

.live-pulse-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 10px 24px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    white-space: nowrap;
    animation: pisca 1.5s infinite;
    box-shadow: 0px 0px 21px -6px rgba(255, 215, 0, 0.6);
}

.live-dot-2 {
    color: #25D366;
    font-size: 10px;
    animation: pulsingOpacity 0.5s infinite linear alternate;
}

.cards-grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 45px;
    /* Aumentado de 35px para 45px */
    width: 100%;
    margin: 0 auto;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    cursor: pointer;
    position: relative;
    padding: 0 15px;
    box-sizing: border-box;
}

.card-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    transition: 0.5s;
    position: relative;
}

.card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    transition: transform 0.5s;
    display: block;
    border-radius: 12px;
}

.card:hover .card-img {
    transform: scale(1.03);
}

/* =====================================================
   NOVAS SEÇÕES: SOBRE MIM, DEPOIMENTOS E FAQ
   ===================================================== */
.sobre-section,
.depoimentos-section,
.faq-section {
    width: 100%;
    padding: 20px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--section-bg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.sobre-content {
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 16px;
    width: 100%;
    max-width: 1084px;
    color: #e0e0e0;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.sobre-image-container {
    width: 100%;
    max-width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sobre-text-container {
    text-align: center;
}

/* ── INTRO TEXT DEPOIMENTOS ── */
.depoimentos-intro {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto 24px;
    font-style: italic;
}

/* ── CAROUSEL DE DEPOIMENTOS ── */
.depoimentos-carousel {
    position: relative;
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #050505;
    padding: 10px 0;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    z-index: 10;
    transition: background 0.3s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn--prev {
    left: 12px;
}

.carousel-btn--next {
    right: 12px;
}

.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Estilo do FAQ (Acordeon) */
.faq-content {
    width: 100%;
    max-width: 1084px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary {
    padding: 18px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Sora', sans-serif;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 20px 20px;
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
    font-family: 'Sora', sans-serif;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

/* =====================================================
   RODAPÉ
   ===================================================== */
.site-footer {
    background: var(--footer-bg);
    color: #F5EFEF;
    text-align: center;
    padding: 30px 20px 80px;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.developer-credit {
    display: block;
    margin-top: 10px;
    font-size: 0.65rem;
    color: #ffffff;
    opacity: 0.45;
    /* Mais visível */
    text-decoration: none;
    font-family: var(--font-main);
    transition: opacity 0.3s ease, color 0.3s ease;
}

.developer-credit:hover {
    opacity: 1;
    /* Brilho total ao passar o mouse */
    color: #45ff66;
    /* Ganha um tom verde para destacar mais */
}

/* =====================================================
   SCROLL-REVEAL 
   ===================================================== */
.scroll-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s ease-out;
}

.scroll-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s ease-out;
}

.scroll-bottom {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

.scroll-top {
    opacity: 0;
    transform: translateY(-40px);
    transition: all 0.7s ease-out;
}

.ativo {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.e1 {
    transition-delay: 0.1s;
}

.e2 {
    transition-delay: 0.2s;
}

.e3 {
    transition-delay: 0.3s;
}

.e4 {
    transition-delay: 0.4s;
}

@keyframes pulsingOpacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pisca {
    70% {
        box-shadow: 0 0 0 25px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* =====================================================
   RESPONSIVIDADE — MOBILE/TABLET/DESKTOP
   ===================================================== */
@media (max-width: 767px) {
    .hero {
        min-height: 648px;
        padding-top: 0;
        justify-content: flex-end;
    }

    .hero-top {
        padding: 20px 20px 0;
    }

    .hero-center {
        padding-bottom: 40px;
        gap: 20px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.3em;
    }

    .cta-wrapper {
        padding: 7px;
    }

    .cta-button {
        font-size: 12px;
        padding: 20px;
        gap: 10px;
    }

    .cta-icon {
        font-size: 9px;
    }

    .cards-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        /* Aumentado de 40px para 50px */
    }

    .card {
        width: 100%;
        max-width: 360px;
    }

    .card-img {
        height: auto;
        border-radius: 10px;
    }

    .card-image-wrapper {
        margin-bottom: -25px;
        /* Reduzido o negativo de -35px para -25px para dar mais ar */
    }

    .site-footer {
        text-align: center;
    }
}

/* TABLET & DESKTOP: Layout ajustado para telas grandes */
@media (min-width: 768px) {

    /* Expandir o wrapper pra telas grandes, saindo do limite de mobile de 480px */
    .mobile-wrapper {
        max-width: 100%;
        /* Largura total pro desktop */
        background: #050505;
    }

    /* Usa a nova foto de capa pra desktop e tablet */
    .hero {
        background-image: url('img/FotoCapaversaopc.png');
        background-position: center center;
    }

    .hero-center {
        padding-bottom: 60px;
    }

    /* Container pros cards centralizados como no mobile */
    .cards-grid {
        flex-direction: column;
        justify-content: center;
        max-width: 480px;
    }

    .card {
        width: 100%;
        margin-bottom: 20px;
    }

    .card:hover .card-img {
        transform: scale(1.05);
    }

    /* O Sobre Mim ganha formato horizontal */
    .sobre-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 40px;
        justify-content: center;
    }

    .sobre-image-container {
        margin-right: 30px;
        flex-shrink: 0;
    }

    .sobre-text-container {
        text-align: left;
    }
}