/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cores da Expertise */
:root {
    --primary-blue: #1e40af;
    --primary-orange: #ea580c;
    --light-blue: #3b82f6;
    --dark-blue: #1e3a8a;
    --light-orange: #fb923c;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

/* Utilitários */
.text-orange {
    color: var(--primary-orange);
}

.highlight {
    background: linear-gradient(120deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.3rem;
}

.cta-price {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.urgency-info {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.countdown-container, .scarcity-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown {
    font-weight: 600;
    color: var(--primary-orange);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--gray-800);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

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

/* Problems Section */
.problems {
    padding: 100px 0;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--danger);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    font-size: 1.5rem;
    color: white;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.problem-cost {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fef2f2;
    border-radius: 8px;
    color: var(--danger);
    font-weight: 500;
    font-size: 0.9rem;
}

.problems-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.problems-cta h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.problems-cta p {
    color: var(--gray-600);
    margin-bottom: 25px;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.solution h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.solution-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 2px;
}

.benefit-item div {
    display: flex;
    flex-direction: column;
}

.benefit-item strong {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-item span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.solution-results {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 16px;
}

.solution-results h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 30px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.result-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.result-text {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Modules Section */
.modules {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.module-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    border-top: 4px solid var(--primary-blue);
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.module-icon i {
    font-size: 1.5rem;
    color: white;
}

.module-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.module-card ul {
    list-style: none;
}

.module-card li {
    padding: 8px 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 20px;
}

.module-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.bonus-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.bonus-section h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.bonus-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

/* Authority Section */
.authority {
    padding: 100px 0;
    background: white;
}

.authority-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.authority-image {
    position: relative;
}

.authority-photo {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.authority-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(234, 88, 12, 0.3);
}

.authority h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.authority-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.credential-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
}

.philosophy {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-orange);
}

.philosophy blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 15px;
    line-height: 1.6;
}

.philosophy cite {
    color: var(--primary-orange);
    font-weight: 600;
}

.certifications h4 {
    color: var(--gray-800);
    margin-bottom: 15px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.cert-grid span {
    background: var(--gray-100);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--gray-700);
    text-align: center;
}

/* Investment Section */
.investment {
    padding: 100px 0;
    background: var(--gray-100);
}

.investment h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 60px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.comparison-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.comparison-card.expensive {
    border-top: 4px solid var(--danger);
}

.comparison-card.recommended {
    border-top: 4px solid var(--success);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.comparison-card h3 {
    font-size: 1.3rem;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.comparison-card.expensive .price {
    color: var(--danger);
}

.comparison-card.recommended .price {
    color: var(--success);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
}

.comparison-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.comparison-card li {
    padding: 8px 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 25px;
}

.comparison-card.expensive li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 600;
}

.comparison-card.recommended li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.savings {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f0fdf4;
    border-radius: 8px;
    color: var(--success);
    font-weight: 500;
}

.roi-calculation {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.roi-calculation h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 30px;
}

.roi-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.roi-item {
    text-align: center;
    padding: 20px;
    background: var(--gray-100);
    border-radius: 12px;
    min-width: 150px;
}

.roi-item.highlight {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    color: white;
}

.roi-label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.roi-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.roi-period {
    font-size: 0.8rem;
    opacity: 0.9;
}

.roi-arrow {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.payment-options {
    display: flex;
    justify-content: center;
}

.payment-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.payment-card h4 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
}

/* Guarantees Section */
.guarantees {
    padding: 100px 0;
    background: white;
}

.guarantees h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 60px;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.guarantee-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guarantee-icon i {
    font-size: 1.5rem;
    color: white;
}

.guarantee-card h3 {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.guarantee-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--gray-100);
}

.faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gray-800);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.urgency-elements {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.urgency-item i {
    color: var(--primary-orange);
}

.final-cta-button {
    margin-bottom: 30px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.badge i {
    color: var(--primary-orange);
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.footer-contact h4,
.footer-social h4 {
    margin-bottom: 15px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-600);
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--danger);
}

.modal-content h2 {
    color: var(--gray-800);
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--gray-800);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.modal-price {
    background: var(--gray-100);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-installment {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-photo {
        width: 300px;
        height: 400px;
    }
    
    .floating-card {
        position: relative;
        margin: 10px;
    }
    
    .solution-content,
    .authority-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.recommended {
        transform: none;
    }
    
    .roi-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .roi-arrow {
        transform: rotate(90deg);
    }
    
    .urgency-elements {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

