/* Estilos Globais */
:root {
    --primary-color: #1565c0;
    --primary-dark: #0d47a1;
    --accent-color: #ff6b00;
    --accent-dark: #e65100;
    --success-color: #4caf50;
    --success-dark: #388e3c;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #888;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e0e0;
    --dark-gray: #757575;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --box-shadow-large: 0 4px 16px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-gray);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

section {
    padding: 60px 0;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--text-color);
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

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

p {
    margin-bottom: 1rem;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(21, 101, 192, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(21, 101, 192, 0.4);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.btn-secondary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

.btn-success {
    background-color: var(--success-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.btn-success:hover {
    background-color: var(--success-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Cabeçalho */
header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
}

.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    margin: 6px 0;
    transition: var(--transition);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs ul li {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.breadcrumbs ul li:not(:last-child):after {
    content: "›";
    margin: 0 8px;
    color: var(--dark-gray);
}

.breadcrumbs ul li a {
    color: var(--dark-gray);
}

.breadcrumbs ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 50%;
    max-height: 90%;
    z-index: 1;
}

/* Offer Card */
.offer-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-shadow: var(--box-shadow-large);
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
}

.offer-title {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.offer-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 30px 0;
}

.offer-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.step-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.offer-cta {
    text-align: center;
    margin-top: 40px;
}

.offer-cta .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

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

.section-title {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(21, 101, 192, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Terms Section */
.terms-section {
    background-color: var(--white);
    padding: 80px 0;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-title {
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

.terms-list {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px 40px;
}

.terms-list ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.terms-list ol li {
    margin-bottom: 15px;
}

.terms-note {
    margin-top: 30px;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 152, 0, 0.1);
    border-left: 4px solid var(--warning-color);
}

.terms-note p {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    overflow: hidden;
    border: 1px solid var(--medium-gray);
}

.faq-question {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: var(--white);
    font-weight: 500;
    color: var(--primary-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(21, 101, 192, 0.05);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--white);
}

.faq-answer-inner {
    padding: 0 20px 20px;
}

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

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.cta-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0 10px 10px;
}

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

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

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

/* Rodapé */
footer {
    background-color: #1a1f36;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex-basis: 30%;
    margin-bottom: 30px;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links {
    flex-basis: 65%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    flex-basis: 23%;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover,
.footer-column ul li a.active {
    color: var(--white);
    padding-left: 5px;
}

.payment-methods {
    margin-bottom: 30px;
    text-align: center;
}

.payment-methods h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    font-size: 20px;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 45%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .offer-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-column {
        flex-basis: 48%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 2;
        flex-grow: 1;
        text-align: center;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 4;
    }
    
    .main-nav.show {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .main-nav ul li {
        margin: 0;
    }
    
    .main-nav ul li a {
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid var(--medium-gray);
    }
    
    .cta-buttons {
        order: 3;
        margin-left: auto;
    }
    
    .menu-toggle {
        display: block;
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .offer-value {
        font-size: 2.5rem;
    }
    
    .footer-logo {
        flex-basis: 100%;
        text-align: center;
    }
    
    .footer-links {
        flex-basis: 100%;
    }
    
    .footer-column {
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .offer-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}
