/* ========================================
   LANDING PAGE - PACOTE AGENDA 2027
   Design fiel ao original
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0a1628;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #4ecb71;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ecb71;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    background: #1a7a4c;
    color: #fff;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid #1a7a4c;
}

.btn-header:hover {
    background: #22a85f;
    border-color: #22a85f;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 50%, rgba(26, 122, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(26, 122, 76, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-tag {
    display: inline-block;
    background: rgba(26, 122, 76, 0.2);
    color: #4ecb71;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    color: #fff;
    font-size: 72px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    color: #b0b8c9;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.badge i {
    color: #4ecb71;
    font-size: 16px;
}

.btn-cta {
    display: inline-block;
    background: #1a7a4c;
    color: #fff;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 122, 76, 0.4);
}

.btn-cta:hover {
    background: #22a85f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 122, 76, 0.5);
}

.hero-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #8a94a6;
    font-size: 12px;
}

.hero-secure i {
    color: #4ecb71;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-image-placeholder {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #1a3a5c, #0d2240);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4ecb71;
    font-size: 20px;
    gap: 15px;
    border: 2px solid rgba(78, 203, 113, 0.3);
}

.hero-image-placeholder i {
    font-size: 60px;
}

/* ========================================
   BENEFITS BAR
   ======================================== */
.benefits-bar {
    background: #1a7a4c;
    padding: 25px 0;
    position: relative;
}

.benefits-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ecb71, #1a7a4c, #4ecb71);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.1);
}

.benefit-item i {
    font-size: 24px;
    color: #fff;
    opacity: 0.9;
}

.benefit-item span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.benefit-item p {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 12px;
    font-style: italic;
}

.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FEATURES SECTION (O que você vai receber)
   ======================================== */
.features-section {
    padding: 90px 0;
    background: #f8fafb;
}

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

.feature-card {
    text-align: center;
    padding: 35px 24px 30px;
    border-radius: 14px;
    border: 1px solid #e8edf3;
    background: #fff;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #e8f5ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 26px;
    color: #1a7a4c;
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 12.5px;
    color: #6b7a8d;
    line-height: 1.6;
}

/* ========================================
   HIGHLIGHT SECTION (Seção escura - grid)
   ======================================== */
.highlight-section {
    background: #0c1829;
    padding: 70px 0;
}

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

.highlight-left h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.highlight-left p {
    color: #8a94a6;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.highlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    transition: all 0.3s;
}

.highlight-btn:hover {
    color: #4ecb71;
    border-color: #4ecb71;
}

.highlight-btn i {
    font-size: 11px;
    transition: transform 0.3s;
}

.highlight-btn:hover i {
    transform: translateX(4px);
}

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.highlight-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item-icon i {
    font-size: 16px;
    color: #d4af37;
}

.highlight-item-text h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-item-text p {
    color: #7a8799;
    font-size: 11.5px;
    line-height: 1.5;
}

/* ========================================
   MODELS SECTION (Modelos de Miolo)
   ======================================== */
.models-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.carousel-item {
    min-width: calc(33.333% - 17px);
    flex-shrink: 0;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e8edf3;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1a7a4c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f0f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-image i {
    font-size: 40px;
    color: #b0b8c9;
}

.product-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 5px;
}

.product-card p {
    font-size: 13px;
    color: #666;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: #1a7a4c;
    color: #fff;
    border-color: #1a7a4c;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d5dd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #1a7a4c;
    transform: scale(1.2);
}

/* ========================================
   COVERS SECTION (Capas)
   ======================================== */
.covers-section {
    padding: 80px 0;
    background: #fff;
}

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

.cover-card {
    text-align: center;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e8edf3;
    transition: all 0.3s;
    position: relative;
    background: #fff;
}

.cover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cover-image {
    width: 100%;
    height: 250px;
    background: #f0f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cover-image i {
    font-size: 50px;
    color: #b0b8c9;
}

.cover-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 5px;
}

.cover-card p {
    font-size: 13px;
    color: #666;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, #0a1628, #0d2240);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(26, 122, 76, 0.15) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-content h2 span {
    color: #4ecb71;
}

.cta-content p {
    color: #b0b8c9;
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #8a94a6;
    font-size: 12px;
}

.cta-secure i {
    color: #4ecb71;
}

.btn-cta-white {
    background: #1a7a4c;
    color: #fff;
    border: 2px solid #1a7a4c;
}

.btn-cta-white:hover {
    background: #22a85f;
    border-color: #22a85f;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #060d18;
    padding: 60px 0 20px;
    color: #b0b8c9;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

.footer-logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #8a94a6;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #8a94a6;
    font-size: 13px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #4ecb71;
}

.payment-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 28px;
    color: #8a94a6;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

/* ========================================
   GOOGLE ADS SLOTS
   ======================================== */
.ads-container {
    padding: 15px 0;
    text-align: center;
    background: #f8f9fa;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ads-container-dark {
    background: #0a1628;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

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

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

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

    .carousel-item {
        min-width: calc(50% - 13px);
    }

    .highlight-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-left {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a1628;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav.active {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

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

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

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

    .carousel-item {
        min-width: 100%;
    }

    .carousel-container {
        padding: 0 40px;
    }

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

    .cta-content h2 {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .highlight-left h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 13px;
    }
}
