/*=============================================
=            CSS Variables                    =
=============================================*/
:root {
    /* Campaign Color Palette */
    --gold: #c19466;
    --slate: #788990;
    --navy: #003c64;
    --brown: #8d461c;
    --olive: #555936;
    --charcoal: #262627;

    /* Derived UI Colors */
    --primary: #ffffff;
    --primary-hover: #f3f4f6;
    --secondary: rgba(255, 255, 255, 0.1);
    --secondary-hover: rgba(255, 255, 255, 0.2);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);

    --border-light: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-main);
    background-color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/*=============================================
=            Hero Section                     =
=============================================*/
.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.1) contrast(1.1);
}

/* Dark Gradient Overlay to ensure text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(38, 38, 39, 0.9) 100%);
    pointer-events: none;
}

/* Content Container - Two Columns Layout */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    padding: 0 4rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Left Column Setup */
.hero-column-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 2rem;
}

/* Right Column Setup */
.hero-column-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 2rem;
}

/* Hero Video - Explicação da Campanha */
.hero-video-explanation {
    width: 100%;
    max-width: 560px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-video-explanation iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* Logo Setup */
.hero-logo {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.4));
    animation: fadeDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* Subtitle setup */
.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Summary paragraph */
.hero-summary {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Buttons Container */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
    width: 100%;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Generic Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    min-width: 250px;
    cursor: pointer;
    border: none;
}

/* Primary Button (Solid) */
.btn-primary {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 20px rgba(193, 148, 102, 0.3);
}

.btn-primary:hover {
    background: #d4a87a;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(193, 148, 102, 0.45);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Secondary Button (Glassmorphism) */
.btn-secondary {
    background: var(--secondary);
    color: var(--text-main);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-btn-outline {
    background: transparent;
    border-color: rgba(193, 148, 102, 0.55);
}

.hero-btn-outline:hover {
    border-color: var(--gold);
    background: rgba(193, 148, 102, 0.12);
}

/* Decorative Wave - On the left edge, showing half */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: -20%;
    width: auto;
    height: 90%;
    max-height: 1000px;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0px -4px 12px rgba(0, 0, 0, 0.2));
    opacity: 0.3;
}

/*=============================================
=            Keyframe Animations              =
=============================================*/
@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=============================================
=            Responsive Design (Hero)         =
=============================================*/
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 2rem;
    }

    .hero-column-left {
        justify-content: center;
        padding-bottom: 1rem;
    }

    .hero-column-right {
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .hero-video-explanation {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-waves {
        left: -50%;
        opacity: 0.15;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-summary {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-logo {
        max-width: 320px;
        margin-bottom: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        min-width: unset;
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/*=============================================
=            About / Teaser Section           =
=============================================*/
.about-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--charcoal) 0%, #1a2a38 100%);
    overflow: hidden;
}

.about-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.about-title span {
    color: var(--gold);
}

.about-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.about-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(193, 148, 102, 0.2);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.4);
}

.about-video-placeholder {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 60, 100, 0.3) 0%, rgba(38, 38, 39, 0.8) 100%);
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

.about-video-placeholder:hover {
    color: var(--gold);
    background: linear-gradient(135deg, rgba(0, 60, 100, 0.45) 0%, rgba(38, 38, 39, 0.9) 100%);
}

.about-video-placeholder svg {
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-video-placeholder:hover svg {
    opacity: 0.9;
    transform: scale(1.15);
}

.about-video-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1rem;
    }
}

/*=============================================
=            Weekly Themes Section            =
=            (LIGHT THEME)                    =
=============================================*/
.weeks-section {
    padding: 6rem 2rem;
    background-color: #f5f1ec;
    position: relative;
    overflow: hidden;
}

.weeks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(193, 148, 102, 0.2), transparent);
    pointer-events: none;
    z-index: 0;
}

.weeks-container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.weeks-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.weeks-title span {
    color: var(--gold);
}

.weeks-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    text-align: center;
    margin-bottom: 3.5rem;
}

.weeks-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Week Item — Light theme card */
.week-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.week-item:hover {
    border-color: rgba(193, 148, 102, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.week-item.active {
    border-color: var(--gold);
    box-shadow: 0 4px 30px rgba(193, 148, 102, 0.12);
}

/* Week Header (Button) — Light */
.week-header {
    width: 100%;
    display: grid;
    grid-template-columns: 160px 1fr 40px;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background-color 0.3s ease;
}

.week-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.week-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.week-number {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
}

.week-date {
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 300;
}

.week-header-center {
    display: flex;
    align-items: center;
}

.week-theme {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}

.week-header-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.week-chevron {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--slate);
    flex-shrink: 0;
}

.week-item.active .week-chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

/* Week Body (Expandable) */
.week-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 1.5rem;
}

.week-item.active .week-body {
    max-height: 2000px;
    padding: 0 1.5rem 2rem;
}

.week-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Main Content Column */
.week-col-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.week-description p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.week-description p:last-child {
    margin-bottom: 0;
}

.week-verse {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.week-challenge {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    background: rgba(0, 60, 100, 0.04);
    border: 1px solid rgba(0, 60, 100, 0.1);
    color: #4a4a4a;
}

.week-challenge-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.week-verse {
    background: rgba(193, 148, 102, 0.08);
    border: 1px solid rgba(193, 148, 102, 0.18);
    color: #4a4a4a;
}

.week-verse svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.week-verse strong {
    color: var(--brown);
}

.week-challenge-row svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.week-challenge strong {
    color: var(--navy);
}

.week-challenge-video-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--navy);
    opacity: 0.9;
    margin-bottom: 0.45rem;
}

.week-challenge-embed-wrap {
    width: 100%;
    max-width: 400px;
}

.week-challenge-embed {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 60, 100, 0.12);
    background: #0a0a0a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.week-challenge-embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
    min-height: 0;
}

/* Media Column */
.week-col-media {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.week-video-box {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f0ece6;
}

.week-video-placeholder {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--slate);
    cursor: default;
    transition: color 0.3s ease;
}

.week-video-placeholder svg {
    opacity: 0.4;
}

.week-video-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.week-video-placeholder .week-video-soon {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--slate);
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0.02em;
}

.week-video-box iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* Spotify Link — Light theme */
.week-spotify-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: rgba(30, 215, 96, 0.08);
    border: 1px solid rgba(30, 215, 96, 0.2);
    color: #1aa34a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.week-spotify-link:hover {
    background: rgba(30, 215, 96, 0.15);
    border-color: rgba(30, 215, 96, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 215, 96, 0.12);
}

/* YouVersion Link */
.week-youversion-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: rgba(0, 60, 100, 0.06);
    border: 1px solid rgba(0, 60, 100, 0.15);
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.week-youversion-link:hover {
    background: rgba(0, 60, 100, 0.12);
    border-color: rgba(0, 60, 100, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 60, 100, 0.1);
}

/* Responsive Weeks */
@media (max-width: 768px) {
    .week-header {
        grid-template-columns: 1fr auto;
        gap: 0.5rem;
        padding: 1rem 1.25rem;
    }

    .week-header-left {
        grid-row: 1;
        grid-column: 1;
    }

    .week-header-center {
        grid-row: 2;
        grid-column: 1;
    }

    .week-header-right {
        grid-row: 1 / 3;
        grid-column: 2;
    }

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

    .week-item.active .week-body {
        max-height: 2200px;
    }

    .week-body {
        padding: 0 1rem;
    }

    .week-item.active .week-body {
        padding: 0 1rem 1.5rem;
    }

    .weeks-section {
        padding: 4rem 1rem;
    }
}

/*=============================================
=            Testimonials Section             =
=============================================*/
.testimonials-section {
    position: relative;
    padding: 6rem 2rem 5rem;
    background: linear-gradient(165deg, #fdfcfa 0%, #f0ebe4 45%, #e8e2d8 100%);
    color: var(--charcoal);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 10% 20%, rgba(193, 148, 102, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(0, 60, 100, 0.06) 0%, transparent 50%);
}

.testimonials-container {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.testimonials-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.testimonials-lead {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.65;
}

.testimonials-lead strong {
    color: var(--navy);
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    min-height: 4rem;
}

.testimonials-loading,
.testimonials-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--slate);
    font-size: 1rem;
    padding: 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.35rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: testimonialCardIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 60, 100, 0.1);
}

@keyframes testimonialCardIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card-quote {
    font-size: 1.02rem;
    line-height: 1.65;
    color: #3d3d3f;
    flex: 1;
}

.testimonial-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.testimonial-card-date {
    font-size: 0.8rem;
    color: var(--slate);
    white-space: nowrap;
}

.testimonials-split {
    margin-bottom: 3rem;
}

.testimonials-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem 2rem 2.25rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.testimonials-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-form .input-group input,
.testimonial-form .input-group textarea {
    width: 100%;
    padding: 1.1rem 1rem 1.1rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    background: #faf9f7;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
}

.testimonial-form .input-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.55;
}

.testimonial-form .input-group input:hover,
.testimonial-form .input-group textarea:hover {
    border-color: rgba(193, 148, 102, 0.45);
    background: #fff;
}

.testimonial-form .input-group input:focus,
.testimonial-form .input-group textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(193, 148, 102, 0.12);
}

.testimonial-form .input-group label {
    left: 1rem;
    color: rgba(38, 38, 39, 0.45);
    background: linear-gradient(to bottom, #faf9f7 55%, #fff 55%);
    padding: 0 0.35rem;
}

.testimonial-form .input-group input:focus~label,
.testimonial-form .input-group input:not(:placeholder-shown)~label,
.testimonial-form .input-group textarea:focus~label,
.testimonial-form .input-group textarea:not(:placeholder-shown)~label {
    left: 0.85rem;
    color: var(--gold);
    background: #fff;
}

.input-group-textarea label {
    top: 1.15rem;
    transform: translateY(0);
}

.input-group-textarea textarea:focus~label,
.input-group-textarea textarea:not(:placeholder-shown)~label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
}

.testimonial-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--slate);
    margin: 0.25rem 0 0.5rem;
    user-select: none;
}

.testimonial-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.testimonial-checkbox-ui {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    display: grid;
    place-items: center;
    transition: var(--transition-smooth);
}

.testimonial-checkbox-ui::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
}

.testimonial-checkbox input:checked+.testimonial-checkbox-ui {
    background: var(--gold);
    border-color: var(--gold);
}

.testimonial-checkbox input:checked+.testimonial-checkbox-ui::after {
    opacity: 1;
}

.testimonial-checkbox input:focus-visible+.testimonial-checkbox-ui {
    box-shadow: 0 0 0 3px rgba(193, 148, 102, 0.35);
}

.testimonial-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.5;
    margin: -0.25rem 0 0.5rem;
}

.testimonial-privacy-note svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--gold);
    opacity: 0.85;
}

.testimonial-submit {
    margin-top: 0.5rem;
    width: 100%;
    max-width: none;
    min-width: unset;
}

.testimonial-form .form-feedback {
    color: var(--charcoal);
}

.testimonial-form .form-feedback.error {
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.08);
    border-color: rgba(185, 28, 28, 0.25);
}

.testimonial-form .form-feedback.success {
    color: #15803d;
    background: rgba(21, 128, 61, 0.08);
    border-color: rgba(21, 128, 61, 0.25);
}

.testimonial-feedback {
    display: none;
    margin-top: 1rem;
}

.testimonial-success {
    text-align: center;
    padding: 2rem 1rem;
}

.testimonial-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(21, 128, 61, 0.12);
    color: #15803d;
    display: grid;
    place-items: center;
}

.testimonial-success-icon svg {
    width: 28px;
    height: 28px;
}

.testimonial-success h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.testimonial-success p {
    color: var(--slate);
    margin-bottom: 1.5rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 4rem 1rem 3.5rem;
    }

    .testimonials-form-card {
        padding: 1.5rem 1.25rem;
    }
}

/*=============================================
=            Group Registration Section       =
=============================================*/
.registration-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background-color: var(--navy);
    position: relative;
    overflow: hidden;
}

/* Animated Wave Lines Background */
.registration-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(193, 148, 102, 0.04) 60px,
            rgba(193, 148, 102, 0.04) 61px
        );
    animation: waveShift 20s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

.registration-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 600px 200px at 20% 80%, rgba(193, 148, 102, 0.08) 0%, transparent 100%),
        radial-gradient(ellipse 500px 250px at 80% 20%, rgba(120, 137, 144, 0.06) 0%, transparent 100%);
}

/* Animated SVG Waves Container */
.wave-lines-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.wave-lines-bg svg {
    position: absolute;
    width: 200%;
    height: 100%;
    left: -50%;
    top: 0;
    opacity: 0.07;
}

.wave-lines-bg .wave-path-1 {
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
    animation: waveDrift1 12s ease-in-out infinite alternate;
}

.wave-lines-bg .wave-path-2 {
    stroke: var(--slate);
    stroke-width: 1;
    fill: none;
    animation: waveDrift2 15s ease-in-out infinite alternate;
}

.wave-lines-bg .wave-path-3 {
    stroke: var(--gold);
    stroke-width: 0.8;
    fill: none;
    animation: waveDrift3 18s ease-in-out infinite alternate;
}

.wave-lines-bg .wave-path-4 {
    stroke: rgba(255,255,255,0.5);
    stroke-width: 1;
    fill: none;
    animation: waveDrift1 20s ease-in-out infinite alternate-reverse;
}

.wave-lines-bg .wave-path-5 {
    stroke: var(--gold);
    stroke-width: 0.6;
    fill: none;
    animation: waveDrift2 14s ease-in-out infinite alternate-reverse;
}

@keyframes waveShift {
    0% { transform: translate(0, 0) rotate(-2deg); }
    100% { transform: translate(-30px, 20px) rotate(2deg); }
}

@keyframes waveDrift1 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(80px) translateY(-15px); }
}

@keyframes waveDrift2 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-60px) translateY(10px); }
}

@keyframes waveDrift3 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(20px); }
}

.registration-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Form Area */
.registration-form-wrapper {
    display: flex;
    flex-direction: column;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Modern Form with Floating Labels and Icons */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 480px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1.25rem 1rem 1.25rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input-group select option {
    background-color: var(--charcoal);
    color: #fff;
}

/* Custom dropdown arrow for select */
.input-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.input-group input:hover,
.input-group select:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.input-group input:focus,
.input-group select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(193, 148, 102, 0.15);
}

.input-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c19466' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='18 15 12 9 6 15'%3e%3c/polyline%3e%3c/svg%3e");
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.input-group input:focus~.input-icon,
.input-group input:not(:placeholder-shown)~.input-icon,
.input-group select:focus~.input-icon,
.input-group select:valid~.input-icon {
    color: var(--gold);
}

.input-group label {
    position: absolute;
    left: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

/* Floating label magic */
.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group select:focus~label,
.input-group select:valid~label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    left: 3.2rem;
    background-color: var(--navy);
    padding: 0 0.5rem;
    color: var(--gold);
}

.submit-btn {
    margin-top: 1rem;
    width: 100%;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-feedback.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Live Counter Area */
.registration-counter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.counter-header {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0 2rem;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(193, 148, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.counter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    min-height: 60px;
}

/* The small animated blocks that represent groups */
.counter-block {
    width: 12px;
    height: 12px;
    background-color: var(--gold);
    border-radius: 3px;
    opacity: 0;
    transform: scale(0);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Responsive adjustments for registration */
@media (max-width: 992px) {
    .registration-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .registration-form-wrapper {
        align-items: center;
        text-align: center;
    }

    .modern-form {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .counter-box {
        padding: 2rem 1.5rem;
    }
}

/*=============================================
=            Materiais da Campanha            =
=============================================*/
.materials-section {
    position: relative;
    padding: 5rem 2rem 5.5rem;
    background: linear-gradient(165deg, #fdfcfa 0%, #f0ebe4 45%, #e8e2d8 100%);
    color: var(--charcoal);
    overflow: hidden;
}

.materials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 45% at 15% 20%, rgba(193, 148, 102, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 75%, rgba(0, 60, 100, 0.06) 0%, transparent 50%);
}

.materials-container {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.materials-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.15;
    text-align: center;
}

.materials-title span {
    color: var(--navy);
}

.materials-lead {
    font-size: 1.05rem;
    color: #5a5a5c;
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2.25rem;
    line-height: 1.6;
}

.materials-grid {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.material-card {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1.15rem 1.35rem;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 60, 100, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.material-card:hover {
    transform: translateY(-3px);
    border-color: rgba(193, 148, 102, 0.45);
    box-shadow: 0 12px 36px rgba(0, 60, 100, 0.1);
}

.material-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.material-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0, 60, 100, 0.08);
    color: var(--navy);
}

.material-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.material-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--charcoal);
}

.material-card-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.45;
}

.material-card-external {
    flex-shrink: 0;
    color: var(--slate);
    opacity: 0.75;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.material-card:hover .material-card-external {
    color: var(--navy);
    opacity: 1;
    transform: translate(2px, -2px);
}

@media (max-width: 576px) {
    .materials-section {
        padding: 3.5rem 1.25rem 4rem;
    }

    .material-card {
        flex-wrap: wrap;
        padding: 1rem 1.15rem;
    }

    .material-card-external {
        margin-left: auto;
    }
}

/*=============================================
=            Success Animation State          =
=============================================*/
.success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
    animation: fadeIn 0.5s ease-out forwards;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
}

.success-state h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #2ecc71;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-state p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.success-animation {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #2ecc71;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px #2ecc71;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #2ecc71;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}