/* 
========================================================================
   DESIGN SYSTEM & ESTILOS - TÔ PRONTA / CLICK K DIGITU'S FOTOGRAFIA
   Desenvolvido com sofisticação, foco em performance e responsividade.
========================================================================
*/

/* 1. Importações de Fontes (Premium) */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* 2. Variáveis de Design (Custom Properties) */
:root {
    /* Cores Primárias e da Marca */
    --color-gold: #9d8569;
    --color-gold-light: #c4a882;
    --color-gold-dark: #7e664c;
    --color-brown: #64473b;
    --color-brown-dark: #3e2a22;
    
    /* Acentos das duas marcas */
    --color-accent-rose: #c77dba; /* Click Logo Pink */
    --color-accent-blue: #5ba4c9; /* Tô Pronta Logo Blue */
    --color-whatsapp: #25d366;
    
    /* Tons Neutros */
    --color-bg-light: #faf8f5;
    --color-bg-card: #ffffff;
    --color-bg-dark: #1e1815;
    --color-text-dark: #2d2420;
    --color-text-muted: #6e5e58;
    --color-text-light: #fdfdfd;
    --color-border: rgba(157, 133, 105, 0.15);
    
    /* Fontes */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Great Vibes', cursive;
    
    /* Sombras e Bordas */
    --shadow-sm: 0 4px 6px -1px rgba(100, 71, 59, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(100, 71, 59, 0.08), 0 4px 6px -2px rgba(100, 71, 59, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(100, 71, 59, 0.12), 0 10px 10px -5px rgba(100, 71, 59, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(100, 71, 59, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. Reset e Estilos Globais */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* 4. Layout e Utilitários */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
    position: relative;
    scroll-margin-top: 90px;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section--dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.section--alt {
    background-color: rgba(157, 133, 105, 0.05);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold-light) !important; }
.text-white { color: var(--color-text-light) !important; }

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-brown);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section--dark .section-title {
    color: var(--color-text-light);
}

.decorative-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 1rem auto 0;
}

/* 5. Componentes de Navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
}

.navbar--scrolled {
    background-color: rgba(30, 24, 21, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-text-light);
}

.navbar__logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.navbar__menu {
    display: none;
}

@media (min-width: 1024px) {
    .navbar__menu {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
}

.navbar__link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(253, 253, 253, 0.8);
    position: relative;
    padding: 0.5rem 0;
}

.navbar__link:hover, .navbar__link--active {
    color: var(--color-gold-light);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold-light);
    transition: var(--transition-normal);
}

.navbar__link:hover::after, .navbar__link--active::after {
    width: 100%;
}

.hamburger {
    display: block;
    cursor: pointer;
    z-index: 1010;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger__bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-text-light);
    transition: var(--transition-normal);
}

.hamburger--active .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger--active .hamburger__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger--active .hamburger__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-slow);
}

.mobile-menu--active {
    right: 0;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-normal);
}

.mobile-menu__link:hover, .mobile-menu__link--active {
    color: var(--color-gold-light);
}

/* 6. Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-dark);
    background-image: linear-gradient(rgba(30, 24, 21, 0.75), rgba(30, 24, 21, 0.85)), url('assets/hero_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text-light);
    text-align: center;
}

.hero__content {
    max-width: 850px;
    margin: 0 auto;
    z-index: 10;
}

.hero__subtitle-decor {
    font-family: var(--font-script);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.15;
    text-transform: none; /* Allows natural casing: Kátia Regina */
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero__typing-wrapper {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    color: var(--color-gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.2rem;
}

.hero__description {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(253, 253, 253, 0.85);
    margin-bottom: 2.5rem;
}

.hero__cta-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 576px) {
    .hero__cta-group {
        flex-direction: row;
    }
}

/* 7. Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.btn--large {
    padding: 1.1rem 3rem;
    font-size: 1rem;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(196, 168, 130, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 168, 130, 0.5);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
}

.btn--secondary {
    border: 2px solid var(--color-gold-light);
    color: var(--color-gold-light);
    background-color: transparent;
}

.btn--secondary:hover {
    background-color: var(--color-gold-light);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

.btn--whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* 8. Barra de Estatísticas */
.stats-bar {
    background-color: var(--color-bg-card);
    box-shadow: var(--shadow-md);
    margin-top: -4rem;
    position: relative;
    z-index: 20;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 0;
}

@media (min-width: 576px) {
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .stats-bar__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: 1.5rem;
    position: relative;
}

@media (min-width: 992px) {
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 25%;
        height: 50%;
        width: 1px;
        background-color: var(--color-border);
    }
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-brown);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* 9. Sobre Mim */
.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3.5rem;
}

@media (min-width: 992px) {
    .about__grid {
        grid-template-columns: 45% 55%;
    }
}

.about__img-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about__img-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--color-bg-card);
    outline: 2px solid var(--color-gold-light);
    outline-offset: 10px;
    width: 100%;
    max-width: 400px;
    z-index: 5;
}

.about__img-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.about__text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
}

.about__p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about__signature {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-top: 2rem;
}

/* Timeline */
.timeline {
    margin-top: 3rem;
    border-left: 2px solid var(--color-border);
    padding-left: 1.5rem;
}

.timeline__item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: var(--color-gold-light);
    border: 3px solid var(--color-bg-light);
}

.timeline__year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.timeline__text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* 10. Cards Gerais e Específicos */
.card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Service Card (Fotografia e Mentoria) */
.card--service {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card--service__icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background-color: rgba(157, 133, 105, 0.1);
    color: var(--color-gold);
}

.card--service__icon-box.accent-rose {
    background-color: rgba(199, 125, 186, 0.1);
    color: var(--color-accent-rose);
}

.card--service__icon-box.accent-blue {
    background-color: rgba(91, 164, 201, 0.1);
    color: var(--color-accent-blue);
}

.card--service__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 1rem;
}

.card--service__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card--service__features {
    margin-bottom: 2rem;
}

.card--service__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.card--service__feature i {
    color: var(--color-gold-light);
    font-size: 0.8rem;
}

/* Event Card */
.card--event {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.card--event__image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card--event__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.card--event__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-accent-blue);
    color: var(--color-text-light);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
}

.card--event__badge.cafe-badge {
    background-color: var(--color-gold);
}

.card--event__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card--event__date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card--event__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-brown);
    margin-bottom: 0.8rem;
}

.card--event__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* 11. Portfólio / Galeria */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    cursor: pointer;
    background-color: var(--color-bg-card);
    transition: var(--transition-normal);
}

.gallery-filter-btn:hover, 
.gallery-filter-btn--active {
    background-color: var(--color-gold);
    color: var(--color-text-light);
    border-color: var(--color-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: var(--transition-normal);
}

.gallery-item--hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(100, 71, 59, 0) 40%, rgba(100, 71, 59, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-gold-light);
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.gallery-item__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Lightbox de Imagem */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 24, 21, 0.98);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.lightbox--active {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
}

.lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(253, 253, 253, 0.1);
}

.lightbox__caption {
    color: var(--color-text-light);
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.lightbox__close, 
.lightbox__nav {
    position: absolute;
    color: rgba(253, 253, 253, 0.7);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: rgba(253, 253, 253, 0.05);
}

.lightbox__close:hover, 
.lightbox__nav:hover {
    color: var(--color-gold-light);
    background-color: rgba(253, 253, 253, 0.15);
}

.lightbox__close {
    top: -60px;
    right: 0;
}

.lightbox__nav--prev {
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__nav--next {
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .lightbox__nav--prev { left: 10px; top: 90%; }
    .lightbox__nav--next { right: 10px; top: 90%; }
    .lightbox__close { top: 10px; right: 10px; z-index: 10; }
}

/* 12. Carrossel de Depoimentos */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
}

.testimonial-slide {
    grid-column: 1;
    grid-row: 1;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    text-align: center;
    padding: 2rem;
}

.testimonial-slide--active {
    opacity: 1;
    visibility: visible;
}

.testimonial__quote-icon {
    font-size: 3rem;
    color: rgba(157, 133, 105, 0.2);
    margin-bottom: 1.5rem;
}

.testimonial__text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--color-brown);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.section--dark .testimonial__text {
    color: var(--color-text-light);
}

.testimonial__author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.testimonial__author {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-gold);
}

.testimonial__role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section--dark .testimonial__role {
    color: rgba(253, 253, 253, 0.6);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--color-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot--active {
    background-color: var(--color-gold);
    width: 25px;
}

/* 13. Formulários Integrados */
.form-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .form-card {
        padding: 3.5rem;
    }
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .form-group-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-brown);
    margin-bottom: 0.5rem;
}

.form-input, 
.form-select, 
.form-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input::placeholder, 
.form-textarea::placeholder {
    color: #a89993;
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
    border-color: var(--color-gold);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.15);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-error {
    font-size: 0.8rem;
    color: #d93025;
    margin-top: 0.3rem;
    display: none;
}

/* Tabs para trocar de formulário */
.form-tabs {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 2.5rem;
}

.form-tab-btn {
    flex: 1;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition-fast);
}

.form-tab-btn:hover {
    color: var(--color-gold);
}

.form-tab-btn--active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.form-panel {
    display: none;
}

.form-panel--active {
    display: block;
}

/* 14. WhatsApp Float & Back to Top */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-text-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 99;
    cursor: pointer;
    transform: scale(0);
    transition: var(--transition-normal);
}

.whatsapp-float--visible {
    transform: scale(1);
    animation: pulse 2s infinite;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 45px;
    height: 45px;
    background-color: var(--color-gold);
    color: var(--color-text-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 98;
    cursor: pointer;
    transform: scale(0);
    transition: var(--transition-normal);
}

.back-to-top--visible {
    transform: scale(1);
}

.back-to-top:hover {
    background-color: var(--color-brown);
}

/* 15. Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: rgba(253, 253, 253, 0.7);
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
    border-top: 4px solid var(--color-gold);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 576px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer__about-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.footer__about-desc {
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer__title {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold-light);
}

.footer__links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__link:hover {
    color: var(--color-gold-light);
    padding-left: 5px;
}

.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer__contact-item i {
    color: var(--color-gold-light);
    margin-top: 0.2rem;
}

.footer__socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    width: fit-content;
}

.footer__social-link:hover {
    color: var(--color-gold-light);
}

.footer__social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(253, 253, 253, 0.05);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.footer__social-link:hover .footer__social-icon {
    background-color: var(--color-gold);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.footer__social-username {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer__bottom {
    border-top: 1px solid rgba(253, 253, 253, 0.1);
    padding-top: 2rem;
    font-size: 0.8rem;
}

.footer__bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .footer__bottom-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__developer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(253, 253, 253, 0.6);
    white-space: nowrap;
}

.footer__developer-link {
    color: var(--color-gold-light);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.footer__developer-link:hover {
    color: var(--color-gold);
}

.footer__developer-img {
    height: 18px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* 16. Sistema de Toast (Avisos Flutuantes) */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    width: 90%;
}

.toast {
    background-color: var(--color-bg-card);
    border-left: 5px solid var(--color-gold);
    color: var(--color-text-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateX(120%);
    transition: var(--transition-normal);
}

.toast--visible {
    transform: translateX(0);
}

.toast--success { border-left-color: var(--color-whatsapp); }
.toast--error { border-left-color: #d93025; }
.toast--info { border-left-color: var(--color-accent-blue); }

.toast__content {
    font-size: 0.9rem;
    font-weight: 500;
}

.toast__close {
    cursor: pointer;
    font-weight: bold;
    opacity: 0.5;
}

.toast__close:hover {
    opacity: 1;
}

/* 17. Efeitos de Digitação (Cursor Blinking) */
.typing-cursor {
    animation: blink 1s infinite;
}

/* 18. Animações Entrada on-scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.animate-fade-in.visible {
    opacity: 1;
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* 19. Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

/* 20. Adições Customizadas para Logos, Vídeos e Questionário da Oficina */

/* Estilos de Logo do Header */
.brand-logo-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold-light);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Mock de Vídeo do Instagram */
.video-section-row {
    width: 100%;
}

.video-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .video-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .video-grid-container.reverse .video-info-text {
        order: 2;
    }
    .video-grid-container.reverse .video-mock-container {
        order: 1;
    }
    .video-info-text {
        align-items: flex-start;
        text-align: left;
    }
}

.video-info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-mock-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.video-mock-frame {
    width: 100%;
    max-width: 320px;
    height: 520px;
    background-color: var(--color-bg-dark);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-lg), 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(157, 133, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.video-mock-media {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-btn {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background-color: rgba(253, 253, 253, 0.95);
    color: var(--color-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: var(--transition-normal);
    animation: play-pulse 2s infinite;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-gold-light);
    color: var(--color-text-light);
}

.video-caption-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--color-text-light);
    font-size: 0.8rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(30, 24, 21, 0.6);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(5px);
}

@keyframes play-pulse {
    0% { box-shadow: 0 0 0 0 rgba(253, 253, 253, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(253, 253, 253, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 253, 253, 0); }
}

/* Grid de Competências (Redes Sociais / Apps de Edição) */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    border: 1px solid var(--color-border);
    overflow-x: auto;
}

.skills-header-row, .skills-row {
    display: grid;
    grid-template-columns: 2.2fr repeat(4, 1fr);
    align-items: center;
    gap: 0.5rem;
    min-width: 520px;
    text-align: center;
}

.skills-header-row {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-brown);
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.8rem;
    margin-bottom: 0.5rem;
}

.skills-row {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(157, 133, 105, 0.08);
}

.skills-row:last-child {
    border-bottom: none;
}

.skills-row div:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-brown-dark);
}

.skills-row input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

/* Grid Autoavaliação Personalidade */
.personality-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    border: 1px solid var(--color-border);
}

.personality-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 0.8rem;
}

.personality-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.personality-row span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.radio-group-yesno {
    display: flex;
    gap: 1.5rem;
}

.radio-group-yesno label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
}

.radio-group-yesno input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

/* Card de Evento com Urgência (Oficina) */
.card--event-urgency {
    border: 2px solid rgba(231, 76, 60, 0.25) !important;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.12), var(--shadow-md) !important;
    position: relative;
}

.card--event-urgency:hover {
    border-color: rgba(231, 76, 60, 0.5) !important;
    box-shadow: 0 16px 40px rgba(231, 76, 60, 0.2), var(--shadow-lg) !important;
}

/* Badge Pulsante "Vagas Limitadas" */
@keyframes pulse-badge {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.badge-pulse {
    animation: pulse-badge 2s ease-in-out infinite;
}

/* ============================================================
   LOGOS DE SEÇÃO (Click Fotografia e Tô Pronta)
   ============================================================ */
.section-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    margin: 0 auto 1.5rem;
    border: 1.5px solid;
}

.section-brand-logo--foto {
    background: rgba(199, 125, 186, 0.08);
    border-color: rgba(199, 125, 186, 0.3);
    color: var(--color-accent-rose);
}

.section-brand-logo--mentoria {
    background: rgba(91, 164, 201, 0.08);
    border-color: rgba(91, 164, 201, 0.3);
    color: var(--color-accent-blue);
}

.section-brand-logo__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.section-brand-logo--foto .section-brand-logo__icon {
    background: rgba(199, 125, 186, 0.15);
}

.section-brand-logo--mentoria .section-brand-logo__icon {
    background: rgba(91, 164, 201, 0.15);
}

.section-brand-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.section-brand-logo__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-brand-logo__sub {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.75;
}

/* Typing animation na seção mentoria */
.typing-text-mentoria {
    display: inline-block;
}

.typing-text-mentoria::after {
    content: '|';
    display: inline-block;
    animation: blink-cursor 0.8s step-end infinite;
    color: var(--color-gold);
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ============================================================
   CORREÇÕES DE RESPONSIVIDADE
   ============================================================ */

/* Evita overflow horizontal global */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Form card não vaza em telas pequenas */
.form-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Skills grid: scroll horizontal em mobile em vez de quebrar o layout */
.skills-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Tabela de personalidade responsiva */
@media (max-width: 480px) {
    .personality-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .radio-group-yesno {
        gap: 1rem;
    }
}

/* Video mock frame redimensiona em mobile */
@media (max-width: 576px) {
    .card {
        padding: 1.5rem 1.2rem;
    }
    .video-mock-frame {
        max-width: 100%;
        height: 380px;
    }
    .video-grid-container {
        gap: 2rem;
    }
    .form-tabs {
        flex-wrap: wrap;
    }
    .form-tab-btn {
        flex: 1 1 auto;
        min-width: 80px;
        font-size: 0.75rem;
        padding: 0.75rem 0.5rem;
    }
    .section-brand-logo {
        padding: 0.5rem 1rem;
    }
    .section-brand-logo__name {
        font-size: 0.9rem;
    }
}

/* Grid de 2 colunas em mobile: evitar overflow */
@media (max-width: 767px) {
    .grid-2, .grid-3, .grid-4 {
        overflow-x: hidden;
    }
    .hero__cta-group {
        flex-direction: column;
        align-items: center;
    }
    .card--event-urgency {
        margin-bottom: 1rem;
    }
}

/* form-group-row em telas muito pequenas: 1 coluna */
@media (max-width: 480px) {
    .form-group-row {
        grid-template-columns: 1fr !important;
    }
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ============================================================
   EMBED DE VÍDEO DO INSTAGRAM (REELS)
   ============================================================ */
.ig-embed-frame {
    width: 100%;
    max-width: 328px;
    height: 580px;
    background-color: var(--color-bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 25px 50px -12px rgba(100, 71, 59, 0.2);
    border: 3px solid rgba(157, 133, 105, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ig-embed-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.ig-embed-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(157, 133, 105, 0.05), rgba(100, 71, 59, 0.08));
    color: var(--color-brown);
}

.ig-embed-placeholder i {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.ig-embed-placeholder p {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

/* 21. Utility: Visually Hidden for SEO */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

