/*

Theme Name: Empresários com Propósito
Version: 1.10

*/

:root {
    /* Backgrounds */
    --bg-dark: #080a11;
    --bg-darker: #010204;
    --bg-deep: #020407;
    --bg-section: #070c14;
    --bg-white: #ffffff;
    --bg-offwhite: #faf9f7;

    /* Brand Colors (Gold) */
    --gold-base: #cfa864;
    --gold-light: #e8d099;
    --gold-dark: #a38042;
    --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-base) 50%, var(--gold-dark) 100%);
    --gold-shadow: rgba(207, 168, 100, 0.3);

    /* Text */
    --text-on-dark: #f0ece6;
    --text-on-white: #1a1a1a;
    --text-muted: #9ba4b5;
    --text-pure-white: #ffffff;
    --text-pure-black: #000000;
    --text-gray: #666666;
    --text-gray-light: #888888;
    --text-dark: #2a2a2a;

    /* Functional Colors */
    --success: #25d366;
    --success-dark: #1ebe57;
    --error: #ff4d4d;

    /* Borders & Misc */
    --border-dark: rgba(207, 168, 100, 0.12);
    --border-light: rgba(0, 0, 0, 0.06);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Effects */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 10px 30px rgba(207, 168, 100, 0.15);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    padding: 100px 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-on-dark);
}

h1 {
    font-size: 3em;
    line-height: 1.2em;
    margin-bottom: 35px;
}

h2 {
    font-size: 2em;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h2 span {
    position: absolute;
    top: -80px;
    left: -40px;
    color: var(--gold-base);
    font-size: 3em;
    opacity: .3;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
}

h3 {
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2em;
}

h4 {
    font-size: 0.9em;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold-dark);
}

h5 {
    font-family: "Cormorant Garamond", serif;
    color: var(--gold-base);
    font-style: italic;
    font-weight: 300;
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 20px;
}

h6 {
    color: var(--text-on-dark);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    max-width: 800px;
    margin: 0 auto;
}

a {
    text-decoration: none !important;
}

ul {
    list-style: none;
    margin: 35px 0 40px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}

ul li {
    display: flex;
    gap: 12px;
    font-weight: 300;
}

ul li i {
    color: var(--gold-base);
    font-size: 0.9rem;
    margin-top: 10px;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.section-white {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-offwhite) 100%);
    color: var(--text-on-white);
}

.section-white h2,
.section-white h3 {
    color: var(--text-on-white);
}

.elegant-divider,
.elegant-divider-center {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    border: none;
    box-shadow: 0 2px 10px rgba(207, 168, 100, 0.3);
    border-radius: 2px;
    margin-bottom: 20px;
}

.elegant-divider-center {
    margin: 0 auto 25px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.img-placeholder {
    width: 100%;
    max-width: 620px;
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.img-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(207, 168, 100, 0.3);
}

.img-placeholder img {
    width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.section-dark .img-placeholder {
    background: linear-gradient(135deg, rgba(10, 19, 33, 0.5) 0%, rgba(5, 10, 17, 0.8) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.section-white .img-placeholder {
    background: rgba(253, 252, 251, 0.8);
    border-color: var(--border-light);
    box-shadow: var(--shadow-soft);
}

button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: var(--text-pure-black);
    padding: 16px 48px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(207, 168, 100, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 10px;
}

button::before,
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-base) 50%, var(--gold-light) 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

button:hover,
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(207, 168, 100, 0.4);
    color: var(--text-pure-black);
}

button:hover::before,
.btn:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-base);
    padding: 12px 32px;
    font-size: 0.85rem;
    box-shadow: none;
    letter-spacing: 1.5px;
    color: var(--gold-base);
}

.btn-outline:hover {
    background: var(--text-on-white);
    color: var(--text-pure-black);
    border-color: var(--text-on-white);
    transform: translateY(-2px);
}

header {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

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

.logo img {
    max-height: 45px;
    transition: var(--transition-smooth);
}

.hero {
    position: relative;
    background-color: var(--bg-white);
    color: var(--text-on-white);
    text-align: center;
}

.hero ul {
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    margin-bottom: 0;
}

.hero-logo-center {
    margin-bottom: 30px;
    text-align: center;
}

.hero-logo-center img {
    max-width: 280px;
    height: auto;
}

.hero h1 {
    text-align: center;
    color: var(--text-on-white);
}

.video-section {
    padding-top: 0;
    text-align: center;
}

.video-section video {
    width: calc(100% + 40px);
    height: auto;
    margin: 0 -20px 20px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 16px;
}

.video-text {
    font-size: 1.2em;
    line-height: 1.5;
    font-family: var(--font-heading);
    margin: 0 auto;
}

.video-text span {
    font-weight: 500;
}

.italic,
.eco-footer p,
.testimonial-text {
    display: block;
    color: var(--gold-base);
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-style: italic;
}

.problem-section {
    background-color: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -300px;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(207, 168, 100, 0.04) 0%, rgba(10, 19, 33, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
}

.problem-list li {
    padding-left: 40px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.problem-list li:hover {
    transform: translateX(12px);
    color: var(--text-pure-white);
}

.problem-list li::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.4rem;
    color: var(--gold-base);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.problem-list li:hover::before {
    opacity: 1;
    text-shadow: 0 0 15px rgba(207, 168, 100, 0.5);
}

.text-focus-section {
    text-align: center;
}

.text-focus-section h2 {
    color: var(--text-pure-white);
}

.text-focus-section-br {
    text-align: center;
}

.benefits-section {
    background-color: var(--bg-dark);
    text-align: center;
    padding-top: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.015);
    padding: 65px 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(207, 168, 100, 0.08), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    border-color: rgba(207, 168, 100, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    display: inline-block;
}

.benefit-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.platform-section {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.movement-section {
    background-color: var(--bg-section);
}

.plans-section {
    background: linear-gradient(to bottom, var(--bg-section) 0%, var(--bg-deep) 100%);
    text-align: center;
}

.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 70px 55px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
}

.plan-card.featured {
    background: linear-gradient(180deg, rgba(20, 16, 10, 0.9) 0%, rgba(5, 10, 17, 0.98) 100%);
    border: 1px solid rgba(207, 168, 100, 0.3);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 40px rgba(207, 168, 100, 0.05);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--gold-base);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), inset 0 0 60px rgba(207, 168, 100, 0.08);
}

.plan-card h3 {
    text-transform: uppercase;
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--text-pure-black);
    padding: 10px 40px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-family: var(--font-body);
    box-shadow: 0 10px 20px rgba(207, 168, 100, 0.3);
}

.plan-card.featured h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.plan-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 30px 0;
    border: none;
}

.plan-card.featured .plan-divider {
    background: linear-gradient(90deg, transparent, rgba(207, 168, 100, 0.3), transparent);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
}

.plan-features li {
    padding: 15px 0;
    display: flex;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-weight: 300;
    flex-wrap: wrap;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--gold-base);
    font-size: 1rem;
    opacity: 0.8;
}

.testimonials {
    background-color: var(--bg-offwhite);
    text-align: center;
}

.testimoial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 45px;
    margin-top: 50px;
    text-align: left;
}

.testimonial-card {
    padding: 60px 50px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background-color: var(--text-pure-white);
    position: relative;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(207, 168, 100, 0.2);
}

.testimonial-card i.quote-icon {
    font-size: 3rem;
    color: var(--gold-light);
    position: absolute;
    top: 35px;
    right: 35px;
}

.stars {
    color: var(--gold-base);
    margin-bottom: 25px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.testimonial-meta {
    font-weight: 700;
    color: var(--text-pure-black);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
}

.testimonial-meta span {
    display: block;
    font-size: 1em;
    line-height: 1em;
    font-weight: 400;
    color: var(--text-gray-light);
    text-transform: none;
    letter-spacing: 0;
}

.final-cta {
    color: var(--text-pure-white);
    text-align: center;
    border-top: 1px solid var(--border-dark);
    background: linear-gradient(135deg, rgba(207, 168, 100, 0.95) 0%, rgba(163, 128, 66, 0.98) 100%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center fixed;
    background-size: cover;
    position: relative;
}

.final-cta h2 {
    color: var(--text-pure-black);
    text-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.final-cta p {
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.final-cta .btn {
    background: var(--text-pure-black);
    color: var(--text-pure-white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.final-cta .btn:hover {
    background: var(--text-on-white);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.final-cta .btn::before {
    display: none;
}

footer {
    background-color: var(--bg-darker);
    color: var(--text-gray);
    padding: 20px 0;
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    letter-spacing: 1px;
    font-weight: 300;
}

footer img {
    width: 100%;
    max-width: 600px;
    margin-bottom: -30px;
}

footer hr {
    margin-bottom: 40px !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--success);
    color: var(--text-pure-white);
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-wa 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: var(--success-dark);
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    animation: none;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

.map-wrapper {
    margin-bottom: 40px;
}

.map-image {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.06));
    transition: var(--transition-smooth);
}

.map-image:hover {
    transform: translateY(-5px) scale(1.02);
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease-out;
}

#loader img {
    width: 480px;
    animation: pulse-loading 1.5s infinite;
}

@keyframes pulse-loading {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

.eco-hub-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.eco-hub-header {
    text-align: center;
    margin-bottom: 50px;
}

.eco-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 70px;
}

.eco-logos img {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.eco-logos img:hover {
    transform: translateY(-5px);
}

.eco-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.eco-item {
    background: var(--bg-offwhite);
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    text-align: center;
}

.eco-item:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
    border-color: rgba(207, 168, 100, 0.3);
    background: var(--text-pure-white);
}

.eco-item h4 {
    margin-bottom: 10px;
}

.eco-footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--text-pure-black) 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(207, 168, 100, 0.2);
    position: relative;
    overflow: hidden;
}

.eco-footer p {
    color: white;
    max-width: initial;
    position: relative;
    font-size: 1.6rem;
    line-height: 2rem;
}

.eco-footer::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: var(--gold-base);
    opacity: .3;
}

.ecosystem-section {
    background-color: var(--bg-offwhite);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.partners-section {
    background-color: var(--bg-section);
    position: relative;
    padding-bottom: 0;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.logo-slider {
    overflow: hidden;
    padding: 40px 0;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    background: var(--text-pure-white);
}

.logo-track {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    margin: 0 auto;
}

.logo-track img {
    max-width: 100px;
}

.partners-grid {
    display: grid;
    gap: 40px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(207, 168, 100, 0.15);
    border-radius: 16px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-base);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.03);
}

.partner-card:nth-child(even) {
    flex-direction: row-reverse;
}

.partner-content {
    flex: 1;
    text-align: left;
}

.partner-content h3 {
    color: var(--text-pure-white);
}

.partner-content h3 span {
    font-size: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 2px;
}

.partner-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.partner-content h4 {
    color: var(--gold-base);
}

.partner-brand {
    flex: 0 0 280px;
    background: var(--text-pure-white);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.partner-brand img {
    max-width: 70%;
}
/* Novas classes estruturais / Componentes */
.benefit-brand {
    background: var(--text-pure-white);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-top: 30px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.benefit-brand img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
}

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

.benefit-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.steps-section {
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 16px;
}

.step-number {
    font-size: 4em;
    line-height: 1em;
    color: var(--gold-base);
    margin-bottom: 15px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
}

.cta-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    color: var(--gold-base);
}

.full-width-img {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 16px;
    display: block;
}

/* Utilitários */
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.text-center { text-align: center; }
.fw-500 { font-weight: 500; }

.text-center ul {
    margin: 0 auto;
    max-width: 400px;
}