/* ==========================================================================
   TATA GODOY – REFINAMENTO VISUAL & DESIGN SYSTEM (2026)
   Estilo Editorial, Orgânico, Romântico, Contemporâneo e Imersivo
   ========================================================================== */

:root {
    /* Paleta Cromática Fina & Natural */
    --color-rose-gold: #c88d90;
    --color-rose-muted: #d8a7a9;
    --color-rose-light: #fbf5f5;
    --color-rose-tint: #f6ecec;
    --color-cream: #fcfbfa;
    --color-gold-accent: #d2b078;
    
    --color-charcoal: #2c2526;
    --color-text-body: #4a4042;
    --color-text-muted: #7c7072;
    --color-white: #ffffff;
    
    /* Tipografia Fina & Editorial */
    --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Espaçamentos & Layout */
    --container-max: 1200px;
    --container-narrow: 860px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Transições & Sombras Sutis */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s var(--ease-out);
    --shadow-subtle: 0 10px 30px -10px rgba(44, 37, 38, 0.07);
    --shadow-hover: 0 20px 40px -15px rgba(200, 141, 144, 0.2);
}

/* Base Reset & Smoothness */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-body);
    background-color: var(--color-cream);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ==========================================================================
   TIPOGRAFIA & TÍTULOS
   ========================================================================== */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.3;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-rose-gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: -0.5px;
    font-style: italic;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 960px;
    margin: 1rem auto 0;
    font-weight: 300;
}

.floral-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.2rem auto 0;
    color: var(--color-rose-muted);
}

.floral-ornament::before,
.floral-ornament::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-rose-muted));
}

.floral-ornament::after {
    background: linear-gradient(to left, transparent, var(--color-rose-muted));
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), padding 0.3s var(--ease-out);
    padding: 1.15rem 0;
    background: transparent;
}

.header.scrolled {
    background-color: rgba(252, 251, 250, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 1.15rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.logo-link img {
    height: 52px;
    width: auto;
    max-width: none;
    display: block;
}

.logo-link .logo-white {
    opacity: 1;
    transition: opacity 0.3s var(--ease-out);
}

.logo-link .logo-rose {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s var(--ease-out);
}

.header.scrolled .logo-link img {
    height: 52px;
}

.header.scrolled .logo-link .logo-white {
    opacity: 0;
}

.header.scrolled .logo-link .logo-rose {
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: clamp(0.9rem, 1.6vw, 1.8rem);
    list-style: none;
    align-items: center;
    flex-shrink: 0;
}

.nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
    white-space: nowrap;
    transition: color 0.3s var(--ease-out);
}

.nav-link:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #ffffff;
    transition: width 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}

.nav-link:not(.nav-cta):hover::after,
.nav-link:not(.nav-cta).active::after {
    width: 100%;
}

.nav-link:hover {
    color: #fceeee;
}

/* Nav CTA - Estado Inicial (Sobre Hero) */
.nav-cta {
    border: 1px solid #ffffff;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: var(--transition);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: #ffffff;
    color: var(--color-charcoal);
}

/* Header Social Icons (Discretos) */
.header-socials {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.85;
    transition: var(--transition);
}

.header-social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.header-social-link:hover {
    opacity: 1;
    color: #fceeee;
    transform: translateY(-1px);
}

.header-whatsapp-link:hover {
    color: #a5d6a7;
}

/* Header Estado Scrolled (Rosa / Escuro) */
.header.scrolled .nav-link {
    color: var(--color-charcoal);
}

.header.scrolled .nav-link:not(.nav-cta)::after {
    background-color: var(--color-rose-gold);
}

.header.scrolled .nav-link:hover {
    color: var(--color-rose-gold);
}

.header.scrolled .nav-cta {
    border-color: var(--color-rose-gold);
    color: var(--color-rose-gold);
    background: transparent;
}

.header.scrolled .nav-cta:hover {
    background-color: var(--color-rose-gold);
    color: var(--color-white);
}

.header.scrolled .header-social-link {
    color: var(--color-charcoal);
    opacity: 0.75;
}

.header.scrolled .header-social-link:hover {
    color: var(--color-rose-gold);
    opacity: 1;
}

.header.scrolled .header-whatsapp-link:hover {
    color: #2e7d32;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
    background-color: var(--color-charcoal);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background-color: var(--color-cream);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(252, 251, 250, 0.02) 0%,
        rgba(252, 251, 250, 0.12) 50%,
        rgba(252, 251, 250, 0.55) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    max-width: 580px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-logo {
    max-width: clamp(280px, 42vw, 460px);
    margin: 0 0 1.6rem auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.2));
    animation: fadeInDown 1.2s var(--ease-out);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.4vw, 1.8rem);
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 2.2rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    text-align: right;
}

.hero-scroll-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: 0;
    transition: var(--transition);
}

.hero-scroll-btn:hover {
    color: var(--color-rose-gold);
    transform: translateY(4px);
}

.hero-scroll-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    animation: bounce 2s infinite;
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
.section {
    padding: clamp(5rem, 8vw, 8rem) 0;
    position: relative;
}

.section-alt {
    background-color: var(--color-rose-light);
}

/* ==========================================================================
   APRESENTAÇÃO / TATA GODOY (FUNDO #fcfbfa INTEGRADO SEM SOMBRA)
   ========================================================================== */
#tata {
    background-color: #fcfbfa;
}

.apresentacao-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.apresentacao-img-col {
    position: relative;
    text-align: center;
}

.apresentacao-frame {
    position: relative;
    display: inline-block;
    background: transparent;
}

.apresentacao-single-photo {
    border-radius: 0;
    box-shadow: none !important;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.apresentacao-text-col {
    padding-left: 1rem;
}

.apresentacao-lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.apresentacao-text p {
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    line-height: 1.85;
}

/* ==========================================================================
   FORMAÇÕES MUSICAIS
   ========================================================================== */
.formacoes-list {
    display: flex;
    flex-direction: column;
    gap: clamp(3.5rem, 6vw, 5.5rem);
}

.formacao-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    background: var(--color-white);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.formacao-row:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.formacao-row.reverse {
    direction: rtl;
}

.formacao-row.reverse .formacao-content {
    direction: ltr;
}

.formacao-media {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.formacao-media img {
    transition: transform 0.6s var(--ease-out);
}

.formacao-row:hover .formacao-media img {
    transform: scale(1.04);
}

.formacao-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.formacao-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-rose-muted);
    font-weight: 600;
}

.formacao-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.2;
}

.formacao-desc {
    color: var(--color-text-body);
    font-size: 1.02rem;
    line-height: 1.8;
}

.formacao-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--color-rose-gold);
    background-color: var(--color-rose-gold);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    width: auto;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    margin-top: 0.5rem;
    box-shadow: 0 4px 14px rgba(200, 141, 144, 0.25);
}

.formacao-btn:hover {
    background-color: #b77d82;
    border-color: #b77d82;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(183, 125, 130, 0.35);
}

/* ==========================================================================
   VÍDEOS (PLAYER PRINCIPAL + PLAYLIST LATERAL)
   ========================================================================== */
.videos-gallery-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.video-main-player-col {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid #eef0f2;
}

.video-main-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-main-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-playlist-col {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid #eef0f2;
}

.video-playlist-list {
    display: flex;
    flex-direction: column;
}

.video-playlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f4f2f0;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: var(--transition);
}

.video-playlist-item:last-child {
    border-bottom: none;
}

.video-playlist-item:hover {
    background: #fcf8f7;
}

.video-playlist-item.active {
    background: #f7ebeb;
    border-left: 3px solid var(--color-rose-gold);
}

.video-item-thumb-wrapper {
    position: relative;
    width: 90px;
    height: 54px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
}

.video-item-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item-play-icon {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.85;
    transition: var(--transition);
}

.video-item-play-icon svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.video-playlist-item:hover .video-item-play-icon,
.video-playlist-item.active .video-item-play-icon {
    background: rgba(200, 141, 144, 0.85);
    opacity: 1;
}

.video-item-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-grow: 1;
    overflow: hidden;
}

.video-item-index {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-rose-muted);
}

.video-item-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-playlist-item.active .video-item-title {
    font-weight: 600;
    color: var(--color-rose-gold);
}

/* ==========================================================================
   MÚSICAS & SOUNDCLOUD
   ========================================================================== */
.musicas-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.musicas-photo-col {
    text-align: center;
    margin-top: -30px;
}

.musicas-vertical-img {
    border-radius: 0;
    box-shadow: none !important;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.soundcloud-col {
    width: 100%;
}

.soundcloud-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    box-shadow: var(--shadow-subtle);
}

/* ==========================================================================
   INSTAGRAM SECTION (MOCKUP CARDS INSPIRADO NA REFERÊNCIA)
   ========================================================================== */
.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: start;
}

.insta-post-box {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.insta-post-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.insta-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: #ffffff;
}

.insta-profile-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.insta-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e1306c;
    padding: 1px;
}

.insta-profile-names {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.insta-username {
    font-size: 0.85rem;
    font-weight: 600;
    color: #262626;
    line-height: 1.2;
}

.insta-subline {
    font-size: 0.7rem;
    color: #8e8e8e;
    line-height: 1.2;
    margin-top: 2px;
}

.insta-follow-btn {
    background: #0095f6;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.insta-follow-btn:hover {
    background: #1877f2;
}

.insta-media-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.insta-media-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
}

.insta-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.insta-post-box:hover .insta-media-wrapper img {
    transform: scale(1.05);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    opacity: 0;
    transition: var(--transition);
}

.insta-media-link:hover .insta-overlay {
    opacity: 1;
}

.insta-play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.insta-play-icon svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.insta-view-text {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.insta-type-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-transform: uppercase;
}

.insta-box-footer {
    padding: 0.85rem 1rem;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.insta-caption-link {
    color: #0095f6;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    text-align: left;
    transition: var(--transition);
}

.insta-caption-link:hover {
    color: #00376b;
    text-decoration: underline;
}

.insta-box-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #262626;
}

.insta-action-icons {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.insta-box-actions svg {
    cursor: pointer;
    transition: var(--transition);
}

.insta-box-actions svg:hover {
    color: #ed4956;
}

.btn-insta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--color-rose-gold);
    color: var(--color-white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.btn-insta:hover {
    background-color: #b3787b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   CASAMENTOS (FOTOGRAFIA FORTE, TEXTO DIRETO À ESQUERDA)
   ========================================================================== */
.casamentos-section {
    position: relative;
    background: url('../images/casamentos/fundo_casamentos.jpg') center right/cover no-repeat;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
    color: var(--color-charcoal);
    overflow: hidden;
}

.casamentos-content-left {
    max-width: 580px;
    text-align: left;
}

.casamentos-title-direct {
    text-align: left;
    margin-bottom: 0.5rem;
}

.floral-ornament-left {
    color: var(--color-rose-muted);
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
}

.casamentos-lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem !important;
}

.casamentos-p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.3rem;
    color: #2b2b2b;
}

/* ==========================================================================
   CONTATO & FORMULÁRIO (DUAS COLUNAS CONFORME MOCKUP)
   ========================================================================== */
.contato-split-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
    max-width: 1140px;
    margin: 0 auto;
}

.contato-col-left {
    display: flex;
    flex-direction: column;
}

.contato-card-composite {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    padding: clamp(1.8rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.4rem;
    height: 100%;
}

.contato-photo-frame {
    width: 100%;
    text-align: center;
}

.contato-photo-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.contato-atendimento-box {
    background: transparent;
    padding: 0;
    text-align: left;
    width: 100%;
}

.contato-atendimento-box h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-charcoal);
    margin-bottom: 0.4rem;
}

.contato-atendimento-box p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.whatsapp-direct-cta {
    width: 100%;
    justify-content: center;
    text-align: left;
    border-radius: var(--radius-sm);
}

.whatsapp-cta-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #dcedc8;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-sm);
    color: #2e7d32;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-cta-box:hover {
    background-color: #c5e1a5;
    transform: translateY(-2px);
}

.whatsapp-cta-box svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    fill: currentColor;
}

.whatsapp-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    color: #33691e;
    line-height: 1.2;
}

.whatsapp-number {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1b5e20;
    line-height: 1.2;
    margin-top: 2px;
}

.contato-col-right {
    display: flex;
    flex-direction: column;
}

.contato-form-card {
    background: var(--color-white);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #e8e2e2;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-charcoal);
    background-color: var(--color-rose-light);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-rose-gold);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(200, 141, 144, 0.15);
}

.btn-primary {
    display: inline-block;
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: var(--color-rose-gold);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #b3787b;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.form-alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: none;
}

.form-alert.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    display: block;
}

.form-alert.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
    display: block;
}

.website-url-field {
    display: none !important;
}

/* ==========================================================================
   RODAPÉ REFINADO CONFORME REFERÊNCIA
   ========================================================================== */
.footer {
    background-color: #1e191a;
    color: #8c8183;
    padding: 3.5rem 0 2rem;
    font-size: 0.85rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 58px;
    width: auto;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 1.8rem;
}

.footer-socials a {
    color: #ded7d8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 500;
}

.footer-socials a:hover {
    color: var(--color-rose-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #6e6465;
}

.footer-heart {
    color: var(--color-rose-gold);
}

.footer-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.raoni-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: none;
    outline: none;
}

.raoni-logo-link img {
    height: 16px;
    width: auto;
    max-width: none;
    display: block;
    opacity: 0.85;
    transition: opacity 0.3s var(--ease-out);
}

.raoni-logo-link:hover img {
    opacity: 1;
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.85rem;
    line-height: 1.4;
    text-align: center;
}

.form-privacy-note a {
    color: var(--color-rose-gold);
    text-decoration: underline;
    transition: color 0.3s var(--ease-out);
}

.form-privacy-note a:hover {
    color: var(--color-charcoal);
}

.footer-privacy-link {
    color: #9e9293;
    text-decoration: underline;
    transition: color 0.3s var(--ease-out);
}

.footer-privacy-link:hover {
    color: var(--color-rose-gold);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* ==========================================================================
   RESPONSIVIDADE & MOBILE FIRST
   ========================================================================== */
@media (max-width: 992px) {
    .hero {
        justify-content: center;
        padding: 6rem 1.5rem 4rem;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .hero-logo {
        margin: 0 auto 1.6rem;
    }

    .hero-tagline {
        text-align: center;
    }

    .hero-scroll-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .apresentacao-wrapper,
    .musicas-wrapper,
    .videos-gallery-layout,
    .contato-split-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .formacao-row,
    .formacao-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .instagram-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-link {
        color: var(--color-charcoal) !important;
    }

    .nav-cta {
        border-color: var(--color-rose-gold) !important;
        color: var(--color-rose-gold) !important;
    }

    .video-playlist-list {
        max-height: 320px;
    }

    .instagram-posts-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .header {
        background-color: rgba(252, 251, 250, 0.98);
        padding: 0.9rem 0;
    }

    .logo-link .logo-white {
        display: none !important;
    }

    .logo-link .logo-rose {
        opacity: 1 !important;
        position: static !important;
    }

    .header-socials {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        z-index: 1050;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .mobile-toggle span {
        background-color: var(--color-charcoal);
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 1.4rem;
        width: 100%;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
    }

    .footer-copyright p {
        line-height: 1.6;
        margin: 0;
    }

    .footer-privacy-link {
        display: inline-block;
        white-space: nowrap;
    }

    .footer-author {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   SCROLL REVEAL & MOTION REFINEMENTS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    will-change: opacity, transform;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal-on-scroll,
    .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
