/* =========================================
   DESIGN TOKENS & RESET
   ========================================= */
:root {
    --primary-color: #0b9347; /* Verdinho da marca */
    --primary-hover: #087538;
    --secondary-color: #ffd800; /* Amarelo botão */
    --secondary-hover: #e5c200;
    
    --bg-color: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #f0fdfa 0%, #f0f9ff 100%);
    
    --text-dark: #0f172a;
    --text-light: #475569;
    --card-bg: #ffffff;
    
    --border-radius: 20px;
    --border-radius-lg: 32px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    
    --font-main: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   TYPOGRAPHY & UTILITIES
   ========================================= */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.section-title.text-left {
    text-align: left;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-large {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.25rem;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 216, 0, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(255, 216, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 216, 0, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.pulse-animation:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    background: var(--bg-gradient);
    padding: 6rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* =========================================
   IDENTIFICATION SECTION
   ========================================= */
.identification {
    padding: 6rem 0;
    background-color: white;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

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

.id-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.id-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.id-card p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}

.identification-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
}

/* =========================================
   METHOD SECTION
   ========================================= */
.method {
    padding: 6rem 0;
    background: var(--bg-color);
}

.method-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.grid-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    position: relative;
    padding-top: 3rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.step-card h3 {
    color: var(--primary-color);
}

.step-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* =========================================
   AUTHORITY SECTION
   ========================================= */
.authority {
    padding: 6rem 0;
    background-color: white;
}

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

.authority-image .image-wrapper {
    position: relative;
    padding: 1rem;
}

.authority-image .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 2rem;
    bottom: 2rem;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.authority-image img {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.authority-subtitle {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.authority-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.authority-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.authority-list p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* =========================================
   INVESTMENT SECTION
   ========================================= */
.investment {
    padding: 4rem 0 6rem;
    background-color: white;
}

.investment-card-light {
    background-color: var(--card-bg);
    border: 2px solid #e2e8f0;
    border-top: 6px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.investment-pre-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.investment-price-light {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.2rem;
    letter-spacing: -0.05em;
}

.investment-price-light .price-currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 0.2rem;
}

.price-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.investment-desc-light {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.investment-features-pills {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.investment-features-pills li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.investment-features-pills i {
    color: #5b21b6;
    font-size: 1.1rem;
}

.price-info-light {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.accordion-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 1rem;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

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

.footer-content {
    flex: 1;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    max-width: 600px;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #f1f1f1;
    color: var(--primary-hover);
}

/* =========================================
   RESPONSIVE (MEDIA QUERIES)
   ========================================= */
@media (max-width: 992px) {
    .hero-container,
    .authority-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        margin: 0 auto;
        max-width: 80%;
    }

    .authority-image {
        order: 2;
    }
    
    .authority-content {
        order: 1;
    }
    
    .authority-list li {
        text-align: left;
    }
    
    .section-title.text-left {
        text-align: center;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    .investment-card {
        padding: 2.5rem 1.5rem;
    }
    
    .investment-features {
        text-align: left;
    }
    
    .hero-image img {
        max-width: 100%;
    }
}
