* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1A237E;
    --primary-dark: #0d1654;
    --primary-light: #283593;
    --secondary-color: #FF8C00;
    --secondary-dark: #e67e00;
    --secondary-light: #FFA726;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #F5F5F7;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-orange: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Títulos com fonte mais moderna */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-weight: 900;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
}

.logo-up {
    color: var(--primary-color);
}

.logo-tech {
    color: var(--secondary-color);
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-left: 5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-header {
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 30px;
}

.btn-hero {
    font-size: 18px;
    padding: 20px 45px;
    margin-top: 20px;
    animation: float 3s ease-in-out infinite;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION COM IMAGEM DE FUNDO ==================== */
.hero {
    background: 
        /* Gradiente escuro por cima da imagem para melhor legibilidade */
        linear-gradient(rgba(26, 35, 126, 0.85), rgba(13, 22, 84, 0.9)),
        /* SUA IMAGEM AQUI - substitua 'fundo-hero.jpg' pelo nome do seu arquivo */
        url('fundo-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-orange);
    color: var(--text-light);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para melhor legibilidade */
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* Sombra para melhor legibilidade */
}

.hero-cta {
    margin-top: 40px;
}

.hero-small-text {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* ==================== FIM HERO SECTION ==================== */

/* Paradigm Section */
.paradigm {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.paradigm-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.paradigm-highlight {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-dark);
    background: linear-gradient(120deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0) 100%);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
}

.paradigm-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Authority Section */
.authority {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.authority-content {
    max-width: 1100px;
    margin: 0 auto;
}

.authority-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.authority-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.authority-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.authority-image:hover img {
    transform: scale(1.05);
}

.authority-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.authority-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.authority-intro h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.authority-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.authority-experience h4,
.authority-achievements h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.authority-experience ul {
    list-style: none;
    padding-left: 0;
}

.authority-experience li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.authority-experience li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.authority-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.authority-stat {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.authority-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.authority-stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.authority-stat-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.authority-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.authority-stat-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    opacity: 0.9;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-orange);
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.module-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.module-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    line-height: 1.3;
}

.module-description {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.module-topics {
    list-style: none;
}

.module-topics li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.module-topics i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

/* ROI Section */
.roi {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.roi-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.roi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.roi-card-featured::before {
    background: var(--gradient-orange);
}

.roi-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.roi-card-featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.roi-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-orange);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.roi-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.roi-value {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.roi-value span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    opacity: 0.7;
}

.roi-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
    flex-grow: 1;
}

.roi-profit {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 600;
}

.roi-example {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: calc(var(--border-radius) - 5px);
    margin-top: 20px;
}

.roi-example h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.roi-example p {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: rgba(255, 140, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Para telas grandes (4 cards) */
@media (min-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Para tablets (2 cards) */
@media (min-width: 769px) and (max-width: 1199px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Para mobile (1 card) */
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

.offer-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.offer-card-featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.offer-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.offer-ribbon {
    position: absolute;
    top: 6px;
    right: -5px;
    background: var(--gradient-orange);
    color: var(--text-light);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.offer-header {
    margin-bottom: 30px;
}

.offer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.offer-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.2);
}

.offer-badge-featured {
    background: var(--gradient-orange);
}

.offer-pricing {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.offer-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.offer-price-old {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: line-through;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.offer-price-current {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.offer-discount {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-orange);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.offer-installment {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.offer-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.offer-features ul {
    list-style: none;
}

.offer-features li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.offer-features i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

/* Garantia Section */
.guarantee {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.guarantee-icon {
    font-size: 160px;
    color: var(--secondary-color);
    text-shadow: 0 4px 30px rgba(255, 140, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.guarantee-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.guarantee-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-item h3 i {
    color: var(--secondary-color);
    font-size: 28px;
}

.guarantee-item p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 15px;
}

.guarantee-item p:last-child {
    margin-bottom: 0;
}

.guarantee-item strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.guarantee-highlight {
    font-size: 22px !important;
    text-align: center;
    padding: 20px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 140, 0, 0.3);
    margin-top: 20px !important;
    animation: pulse 2s infinite;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.urgency-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin: 50px 0;
}

.urgency-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.urgency-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.urgency-item i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.urgency-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.urgency-number {
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    min-width: 80px;
    box-shadow: var(--shadow);
    text-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.countdown-item label {
    font-size: 14px;
    color: var(--text-dark);
    margin-top: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 140, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    border: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-dark);
}

.faq-question i {
    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.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-light);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav,
    .btn-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow);
        padding: 20px;
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 80px 0 60px;
        background: 
            linear-gradient(rgba(26, 35, 126, 0.9), rgba(13, 22, 84, 0.95)),
            url('fundo-hero-mobile.jpg'); /* Pode usar a mesma imagem ou uma versão mobile */
        background-size: cover;
        background-position: center;
    }
    
    .hero-title {
        font-size: 28px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .authority-profile {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .authority-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .paradigm-content p {
        font-size: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .roi-card-featured {
        transform: scale(1);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .offer-card-featured {
        transform: scale(1);
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .guarantee-icon {
        font-size: 100px;
        order: -1;
    }

    .guarantee-title {
        font-size: 28px;
    }

    .guarantee-item {
        text-align: left;
    }

    .guarantee-item h3 {
        font-size: 20px;
    }

    .guarantee-item p {
        font-size: 16px;
    }

    .guarantee-highlight {
        font-size: 18px !important;
    }

    .urgency-content {
        grid-template-columns: 1fr;
    }

    .urgency-number {
        font-size: 56px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item span {
        font-size: 32px;
        padding: 15px;
        min-width: 60px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-card-featured {
        transform: scale(1);
    }
    
    .guarantee-title {
        font-size: 36px;
    }
    
    .guarantee-content {
        gap: 40px;
    }
    
    .guarantee-icon {
        font-size: 120px;
    }
}