@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Manrope:wght@200..800&display=swap');

/* ========================================
   VARIÁVEIS E RESET
======================================== */

:root {
    --primary-black: #000000;
    --secondary-black: #0c0c0f;
    --tertiary-black: #1a1a1f;
    --gold: #b08744;
    --gold-light: #d1ae66;
    --white: #f4f2e8;
    --gray-light: #cccccc;
    --gray-dark: #333333;
    --gradient-gold: linear-gradient(135deg, #b08744, #d1ae66);
    --gradient-black: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(12, 12, 15, 0.95));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Caslon Text', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background-image: url('IMG/element-bg-01.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-image: url('IMG/element-bg-02.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.text-center {
    text-align: center;
}

/* ========================================
   TIPOGRAFIA E TEXTOS
======================================== */

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.emphasis {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.decision-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.strong-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ========================================
   BOTÕES
======================================== */

.btn-gold {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: var(--gold);
    color: #000000;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.475s;
}

.button-content {
    position: relative;
    z-index: 1;
}

.btn-gold:hover::before {
    transform: scaleX(1);
}

.btn-gold:hover {
    color: #f4f2e8;
}

.btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #0c0c0f;
    transition: all 0.475s;
    z-index: 0;
}

.btn-large {
    height: 3.5rem;
    padding: 0 2.5rem;
    font-size: 1.1rem;
}

.btn-gold i {
    margin-right: 10px;
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-black);
    background-image: url('IMG/element-bg-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0 80px;
    overflow: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(26, 26, 26, 0.8));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
    margin-bottom: 3rem;
}

/* ========================================
   FORMULÁRIOS
======================================== */

.form-card {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(#0c0c0f, #0c0c0f) padding-box,
                linear-gradient(145deg, transparent 35%, #b08744, #d1ae66) border-box;
    border: 2px solid transparent;
    padding: 32px 24px;
    font-size: 14px;
    font-family: inherit;
    color: #f4f2e8;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.captacao-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.phone-input-wrapper {
    display: flex;
    gap: 10px;
}

.country-code-select {
    width: 120px;
    padding: 12px 8px;
    border-radius: 8px;
    border: 1px solid #414141;
    background-color: rgba(10, 10, 10, 0.8);
    color: #f4f2e8;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-code-select:focus {
    outline: none;
    border-color: #b08744;
    background: rgba(244, 242, 232, 0.1);
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #414141;
    background-color: transparent;
    color: #f4f2e8;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #b08744;
    background: rgba(244, 242, 232, 0.1);
}

.form-group input::placeholder {
    color: rgba(244, 242, 232, 0.5);
}

.support-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--gold-light);
    font-weight: 600;
}

.support-text i {
    margin-right: 8px;
}

/* ========================================
   SECTION: O PESO
======================================== */

.section-peso {
    background: var(--secondary-black);
    background-image: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95)),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%231a1a1a"/><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
}

.hero .section-row {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 60px;
    align-items: flex-start;
}

.hero .text-col {
    flex: 1 1 auto;
    max-width: 600px;
}

.hero .image-col {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
}

.hero-image-container {
    position: relative;
    z-index: 3;
}

.hero-image {
    max-height: 900px;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    transform: translateY(100px);
}

.text-col, .image-col {
    flex: 1;
}

.section-row {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.peso-content {
    margin-top: 2rem;
}

.decision-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
}

.microcopy {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 20px 30px;
    border-radius: 50px;
    margin-top: 30px;
    font-weight: 700;
    font-size: 1.1rem;
}

.microcopy i {
    font-size: 1.5rem;
}

.symbolic-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--gold);
}

.section-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.symbolic-image:hover .section-image {
    transform: scale(1.05);
}

/* ========================================
   SECTION: WELSON
======================================== */

.section-welson {
    background: var(--primary-black);
    padding: 100px 0;
}

.welson-header {
    margin-bottom: 60px;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--gold-light);
    font-style: italic;
    margin-top: 10px;
}

.welson-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.welson-image {
    flex: 0 0 350px;
}

.profile-image {
    width: 100%;
    border-radius: 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.welson-bio {
    flex: 1;
}

.bio-card {
    display: flex;
    gap: 20px;
    background: var(--gradient-black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.bio-card:hover {
    transform: translateX(10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.bio-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-black);
}

.bio-text h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bio-text p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.highlight-text {
    color: var(--gold-light);
    font-weight: 600;
    margin-top: 15px;
}

/* ========================================
   SECTION: CTA FINAL
======================================== */

.section-cta-final {
    background: var(--secondary-black);
    background-image: url('evento-ao-vivo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.85));
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.form-final {
    margin: 40px auto 0;
    max-width: 500px;
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background-color: var(--primary-black);
    padding: 40px 0;
    border-top: 2px solid var(--gold);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 5px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

/* ========================================
   ANIMAÇÕES
======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-peso .section-row,
    .section-welson .section-row,
    .welson-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero .section-row {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .welson-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero .section-row {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .hero .text-col {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero .image-col {
        display: none !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .emphasis {
        font-size: 1.2rem;
    }
    
    .lead,
    .lead-text {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .microcopy {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .bio-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .bio-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .btn-gold {
        width: 100%;
        text-align: center;
    }
    
    .form-card {
        padding: 25px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
}

/* ========================================
   UTILITÁRIOS
======================================== */

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ========================================
   OBRIGADO PAGE STYLES
======================================== */

.obrigado-page {
    font-family: 'Manrope', sans-serif;
    background: #000000;
    color: #f4f2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.obrigado-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../IMG/element-bg-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.obrigado-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(176, 135, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(176, 135, 68, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.obrigado-container {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 2;
}

.obrigado-container h1 {
    font-family: 'Libre Caslon Text', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #b08744, #d1ae66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.topo {
    margin-bottom: 40px;
}

.logo-obrigado {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.subtitulo-topo {
    font-size: 1.2rem;
    color: #d1ae66;
    font-weight: 600;
    line-height: 1.4;
}

.liquid-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin: 40px 0;
}

.loader-track {
    position: relative;
    width: 280px;
    height: 36px;
    background: linear-gradient(135deg, #0A0A0A, #000000);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(212, 175, 55, 0.1);
}

.liquid-fill {
    position: absolute;
    top: 2px;
    left: 2px;
    height: calc(100% - 4px);
    background: linear-gradient(90deg, #B08744, #D4AF37, #E5C158, #D4AF37);
    border-radius: 16px;
    animation:
        fillProgress 4s ease-out forwards,
        goldShift 3s linear infinite;
    box-shadow:
        0 0 16px rgba(212, 175, 55, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.loading-text {
    color: #D4AF37;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: goldGlow 1.5s ease-in-out infinite;
    font-family: 'Libre Caslon Text', serif;
}

@keyframes fillProgress {
    0% {
        width: 4px;
    }
    25% {
        width: 25%;
    }
    50% {
        width: 50%;
    }
    75% {
        width: 75%;
    }
    100% {
        width: 87%;
    }
}

@keyframes goldShift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }
    33% {
        filter: hue-rotate(15deg) brightness(1.15);
    }
    66% {
        filter: hue-rotate(-15deg) brightness(0.95);
    }
    100% {
        filter: hue-rotate(0deg) brightness(1);
    }
}

@keyframes goldGlow {
    0%,
    100% {
        opacity: 0.85;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

.instrucoes {
    margin: 30px 0;
}

.instrucoes ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.instrucoes li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.obrigado-container p {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.6;
    opacity: 0.85;
}

.destaque-pilares {
    font-weight: 600;
    font-size: 1.05rem !important;
    opacity: 0.9 !important;
    margin-top: 15px !important;
}

.cta-grupo {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #D4AF37 !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
    opacity: 1 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 20px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(37, 211, 102, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2FE072, #14A085);
}

.btn-whatsapp:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-whatsapp .button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .obrigado-container {
        padding: 20px;
    }
}