/* VERIFY | RISA - Design Limpo com Azul Escuro */

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

:root {
    --white: #FFFFFF;
    --bg-light: #F8FAFB;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --orange: #FF6B35;
    --blue-dark: #0B1A2D;
    --blue-navy: #1E3A5F;
    --border: #E5E5E5;
    --green-whatsapp: #25D366;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

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

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--green-whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ==================== HEADER ==================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
}

.verify {
    color: var(--blue-dark);
}

.separator {
    color: var(--orange);
    margin: 0 8px;
}

.risa {
    color: var(--orange);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--orange);
}

/* ==================== HERO ==================== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-navy) 100%);
    color: var(--white);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.highlight {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 40px;
}

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

.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 100px 0;
}

.bg-light {
    background: var(--bg-light);
}

.bg-dark {
    background: var(--blue-dark);
    color: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.section-intro {
    font-size: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.center {
    text-align: center;
}

/* ==================== CARDS ==================== */
.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--blue-navy);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(11, 26, 45, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--blue-dark);
}

.card p {
    font-size: 15px;
    color: var(--text-gray);
}

/* ==================== PRODUCT IMAGES ==================== */
.product-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.image-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.image-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* ==================== STEPS ==================== */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue-dark);
}

.step p {
    font-size: 14px;
    color: var(--text-gray);
}

.arrow {
    font-size: 32px;
    color: var(--orange);
    font-weight: bold;
}

/* ==================== BENEFITS ==================== */
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue-dark);
}

.benefit p {
    font-size: 16px;
    color: var(--text-gray);
}

/* ==================== SECTORS ==================== */
.sectors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sector {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.sector:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
}

.sector-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.sector h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue-dark);
}

.sector p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ==================== CONTACT ==================== */
.contact-text {
    font-size: 20px;
    margin: 30px 0 40px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-whatsapp);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

.btn-email {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--white);
    transition: all 0.3s;
}

.btn-email:hover {
    background: var(--white);
    color: var(--blue-dark);
    transform: translateY(-2px);
}

/* ==================== TRUST BADGES ==================== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.badge {
    text-align: center;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.badge svg {
    color: var(--orange);
    margin-bottom: 15px;
}

.badge h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.badge p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== FOOTER ==================== */
.footer-logo {
    padding-top: 40px;
    font-size: 28px;
    font-weight: 800;
}

.footer-logo .verify {
    color: var(--white);
}

.footer-logo .risa {
    color: var(--orange);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

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

    .hero h1 {
        font-size: 32px;
    }

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

    .cards-row,
    .product-images,
    .benefits,
    .sectors {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .contact-buttons {
        flex-direction: column;
    }

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}