/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */
   :root {
    /* Colors */
    --bg-main: #0f0f0f;
    --bg-light: #18181b;
    --bg-dark: #000000;
    --bg-card: #1f2937;
    
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --text-light: #ffffff;
    
    --primary: #c68c53; /* Bronze/Dourado */
    --primary-dark: #b07b46;
    --secondary: #ffffff; /* Títulos em branco no tema escuro */
    --accent: #c68c53; 
    --accent-light: rgba(198, 140, 83, 0.1);
    
    --success: #10b981;
    --error: #ef4444;

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Sora', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3.5rem;
    --space-xl: 6rem;

    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.25);
    --shadow-floating: 0 20px 40px -5px rgba(0,0,0,0.8);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* For fixed header */
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 3.5vw, 3.25rem); letter-spacing: -0.02em; line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.01em; margin-bottom: 1.5rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.7; }
p.subheadline { font-size: 1.05rem; color: var(--text-muted); max-width: 90%; line-height: 1.6; margin-top: 1rem; }

a { text-decoration: none; color: var(--primary); transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

.center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.text-body { color: var(--text-muted); font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; color: var(--text-muted); }
.font-semibold { font-weight: 600; }
.border-top { border-top: 1px solid #e5e7eb; }

/* Utilities */
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-dark h2, .bg-dark p { color: var(--text-light); }

.section-header { max-width: 800px; margin: 0 auto var(--space-lg); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #111111;
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   1. Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem; /* Garante espaçamento entre logo e botão se a tela apertar */
}

.logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 1; /* Permite que a logo diminua se faltar espaço */
}

.header-logo-img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.logo-subtext {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-nav a:not(.btn) {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.header-nav a:not(.btn):hover {
    color: var(--primary);
}

.header-nav a.btn {
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
}

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

/* ==========================================================================
   3. Barra de Prova Social e Autoridadeon
   ========================================================================== */
.hero {
    padding-top: calc(80px + var(--space-md));
    padding-bottom: var(--space-lg);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(198, 140, 83, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: transparent;
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(198, 140, 83, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    border-left: 2px solid rgba(198, 140, 83, 0.3);
    padding-left: 1.5rem;
}

.stat-item strong {
    color: #fff;
    font-size: 1.5rem;
    display: block;
    font-family: var(--font-heading);
}

.stat-item span {
    color: #a3a3a3;
    font-size: 0.85rem;
}

.hero-cta-wrapper {
    margin-top: 2.5rem;
}

.microcopy {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-top: 1rem;
    color: var(--text-muted);
}

.microcopy svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-floating);
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: white;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.05);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    line-height: 1.2;
    font-size: 0.9rem;
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   3. Social Proof
   ========================================================================== */
.social-proof {
    background-color: var(--bg-card);
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.proof-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.proof-icon {
    font-size: 1.5rem;
    background: var(--bg-light);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.proof-icon.stars-icon {
    width: auto;
    background: transparent;
    border-radius: 0;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.proof-content {
    display: flex;
    flex-direction: column;
}

.proof-content strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.proof-content span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   4. Situation Cards
   ========================================================================== */
.situation {
    padding: var(--space-xl) 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
    border-radius: 16px;
}

.card-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(198, 140, 83, 0.3);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-feature p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ==========================================================================
   5. How it Works
   ========================================================================== */
.how-it-works {
    padding: var(--space-xl) 0;
}

.steps-wrapper {
    display: flex;
    gap: 2rem;
    position: relative;
}

.step {
    flex: 1;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(198, 140, 83, 0.4);
}

.honorarios-banner {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    border: 1px solid rgba(198, 140, 83, 0.2);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    margin-top: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.honorarios-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(198, 140, 83, 0.15) 0%, rgba(255,255,255,0) 70%);
}

.honorarios-banner h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.honorarios-banner p {
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* ==========================================================================
   6. Institutional
   ========================================================================== */
.institutional {
    padding: var(--space-xl) 0;
}

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

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

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.check-list strong {
    display: block;
    color: var(--secondary);
    font-family: var(--font-heading);
    margin-bottom: 0.25rem;
}

.check-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.abstract-circles {
    position: absolute;
    width: 150%;
    height: 150%;
    border: 40px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top: -25%;
    right: -25%;
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(0,0,0,0.3);
    font-weight: 600;
    z-index: 2;
}

/* ==========================================================================
   6.5 Testimonials
   ========================================================================== */
.testimonials {
    padding: var(--space-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.05rem;
    line-height: 1.2;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-stars {
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* ==========================================================================
   7. Form Section
   ========================================================================== */
.form-section {
    padding: var(--space-xl) 0;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 0.95rem;
}

input[type="text"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-main);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(198, 140, 83, 0.2);
}

/* Custom Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-main);
    font-weight: normal;
    margin-bottom: 0;
}

.radio-label:hover {
    border-color: var(--primary);
    background-color: rgba(198, 140, 83, 0.05);
}

.radio-label input[type="radio"] {
    margin-top: 4px;
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.radio-label span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.radio-label:has(input:checked) {
    border-color: var(--primary);
    background-color: rgba(198, 140, 83, 0.1);
}

.radio-label:has(input:checked) span {
    color: var(--secondary);
    font-weight: 500;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* ==========================================================================
   8. FAQ
   ========================================================================== */
.faq {
    padding: var(--space-xl) 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
}

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

.accordion-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

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

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

.accordion-header .icon {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.accordion-item.active .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: 0;
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-main);
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer strong {
    color: white;
}

/* ==========================================================================
   3.5 News Highlight
   ========================================================================== */
.news-highlight {
    padding: var(--space-lg) 0;
}

.news-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    border-top: 4px solid #C4170C;
    position: relative;
}

.news-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.news-tag {
    background-color: var(--bg-light);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
}

.g1-logo {
    height: 30px;
    width: auto;
}

.news-card h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.news-excerpt p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.news-quote {
    background-color: #f8f9fa;
    border-left: 4px solid #C4170C;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-main);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.news-quote strong {
    background-color: rgba(196, 23, 12, 0.1);
    color: #C4170C;
    padding: 0 4px;
    border-radius: 4px;
}

/* ==========================================================================
   Responsiveness
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-visual {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    p.subheadline {
        margin: 1rem auto;
    }
    
    .microcopy {
        justify-content: center;
        text-align: left;
    }

    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .header-logo-img {
        height: 32px;
    }

    .header-contact-btn .btn-text {
        display: none;
    }
    
    .header-contact-btn .btn-icon {
        display: block !important;
    }
    
    .header-contact-btn {
        padding: 0.75rem !important;
        border-radius: 50% !important;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    
    .hero {
        padding-top: calc(80px + var(--space-sm));
        min-height: auto;
    }

    .floating-badge {
        bottom: 10px;
        left: 10px;
        padding: 0.75rem 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        border-left: none;
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    .sobre-nos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .steps-wrapper {
        flex-direction: column;
    }
    
    .institutional-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .social-proof-grid {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

/* Utility Class for Animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
