/* Estilos Gerais */
:root {
    --primary-color: #0052cc;
    --secondary-color: #0066ff;
    --accent-color: #00cc66;
    --text-color: #333333;
    --light-text: #ffffff;
    --light-bg: #f5f7fa;
    --dark-bg: #0a2540;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

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

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn i {
    margin-right: 8px;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--light-text);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: #00b359;
    border-color: #00b359;
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 204, 102, 0.2);
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
}

.emphasis {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

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

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

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

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

nav ul li a:hover:after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.05;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.hero-image:after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    background-color: #ffffff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
}

.stat h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* About Section */
.about {
    background-color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-video {
    flex: 1;
}

.about-video iframe {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.how-it-works:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--primary-color);
    opacity: 0.05;
}

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

.step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

/* Benefits Section */
.benefits {
    background-color: #ffffff;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.benefits-list {
    flex: 1;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 10px;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 0;
}

.guarantee h2, .guarantee h3 {
    color: var(--light-text);
}

.guarantee h2:after {
    background-color: var(--light-text);
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-number {
    flex: 0 0 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-number i {
    font-size: 5rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.guarantee-text {
    flex: 1;
}

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

.guarantee .btn-primary {
    background-color: var(--light-text);
    color: var(--primary-color);
    border-color: var(--light-text);
}

.guarantee .btn-primary:hover {
    background-color: transparent;
    color: var(--light-text);
}

/* Investment Section */
.investment {
    background-color: var(--light-bg);
}

.investment-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.investment-text {
    flex: 1;
}

.investment-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.investment-features {
    list-style: none;
    margin-top: 30px;
}

.investment-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.investment-features li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.investment-image {
    flex: 1;
}

.investment-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Contact Section */
.contact {
    background-color: #ffffff;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-text {
    flex: 1;
}

.contact-info {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form {
    flex: 1;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

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

.checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.contact-form .btn-cta {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 30px;
}

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

.footer-logo img {
    height: 50px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .guarantee-number span {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px 10px;
    }
    
    .cta-buttons {
        margin-top: 10px;
    }
    
    .hero .container,
    .about-content,
    .benefits-content,
    .guarantee-content,
    .investment-content,
    .contact-content {
        flex-direction: column;
    }
    
    .hero-image:after {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .guarantee-number {
        flex: 0 0 auto;
    }
    
    .guarantee-number span {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .guarantee-number span {
        font-size: 4rem;
    }
    
    .investment-value {
        font-size: 2rem;
    }
}

.success-message {
    background-color: #e8f5e9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    border-left: 5px solid #4caf50;
  }
  
  .success-message h3 {
    color: #2e7d32;
    margin-bottom: 15px;
  }
  
  .success-message p {
    color: #333;
  }
