/* ==========================================
   TRÍADE ENGENHARIA - STYLESHEET
   ========================================== */

:root {
    --color-navy-dark: #0a1326;
    --color-navy-main: #0f1c3f;
    --color-navy-card: #15254d;
    --color-gold-light: #fbe69b;
    --color-gold-main: #d4af37;
    --color-gold-dark: #b8860b;
    --color-gold-gradient: linear-gradient(135deg, #f8e08d 0%, #d4af37 50%, #aa7c11 100%);
    --color-green-wsp: #25d366;
    --color-green-dark: #128c7e;
    --color-text-dark: #1c273a;
    --color-text-muted: #64748b;
    --color-bg-light: #f8fafc;
    --color-white: #ffffff;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
    --box-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-medium: 0 15px 35px rgba(10, 19, 38, 0.12);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-navy-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-yellow {
    background: var(--color-gold-gradient);
    color: var(--color-navy-dark);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    filter: brightness(1.05);
}

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

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

.btn-green-pulse {
    background-color: var(--color-green-wsp);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: pulseGlow 2s infinite;
}

.btn-green-pulse:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 19, 38, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    transition: var(--transition-fast);
}

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

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

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold-main);
    margin-top: 2px;
}

.header-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 4px;
}

.slogan-header {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: #e2e8f0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-gold-main);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-gold-main);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    padding: 10px 18px;
    font-size: 0.82rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 90px;
    background: url(hero-bg.jpeg) center/cover no-repeat;
    color: #ffffff;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 19, 38, 0.96) 0%, rgba(10, 19, 38, 0.88) 55%, rgba(10, 19, 38, 0.5) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--color-gold-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 15px;
}

.highlight-gold {
    color: #f3c242;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 580px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1rem;
}

.hero-subtext {
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* HERO CARD */
.hero-card {
    background: var(--color-navy-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.card-header-navy {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header-navy h3 {
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.warning-icon {
    color: var(--color-gold-main);
    font-size: 1.3rem;
}

.card-body-navy {
    padding: 25px;
}

.hero-check-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.5;
}

.check-gold {
    color: #f3c242;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* SECTIONS GENERAL */
.section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-gold-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tag-gold {
    color: var(--color-gold-main);
}

.section-title {
    font-size: 2.1rem;
    color: var(--color-navy-dark);
    margin-bottom: 15px;
}

.text-white {
    color: #ffffff !important;
}

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

.mt-5 {
    margin-top: 40px;
}

/* SECTION 3: O QUE ANALISAMOS */
.section-analisamos {
    background-color: #ffffff;
}

.cards-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.analysis-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-fast);
}

.analysis-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold-main);
    box-shadow: var(--box-shadow-medium);
}

.card-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 15px auto;
    background: rgba(15, 28, 63, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy-main);
    font-size: 2.2rem;
    transition: var(--transition-fast);
}

.analysis-card:hover .card-icon {
    background: var(--color-navy-main);
    color: var(--color-gold-main);
}

.analysis-card h3 {
    font-size: 1rem;
    color: var(--color-navy-dark);
}

/* SECTION 4: COMO FUNCIONA */
.section-dark {
    background-color: var(--color-navy-dark);
    color: #ffffff;
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 42px;
    height: 42px;
    background: var(--color-gold-gradient);
    color: var(--color-navy-dark);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step-icon {
    font-size: 1.8rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.step-title {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.45;
}

.step-connector {
    height: 2px;
    background: border-box;
    border-top: 2px dashed rgba(212, 175, 55, 0.4);
    flex: 0.5;
    margin-top: 21px;
}

/* SECTION 5: PARA QUEM É */
.section-para-quem {
    background-color: var(--color-bg-light);
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

.rounded-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-medium);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-navy-main);
    color: #ffffff;
    padding: 20px 25px;
    border-radius: var(--border-radius-md);
    border-left: 5px solid var(--color-gold-main);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.exp-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold-main);
}

.exp-text {
    font-size: 0.85rem;
    color: #cbd5e1;
}

.text-body-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy-dark);
    margin-bottom: 12px;
}

.text-body {
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy-main);
    box-shadow: var(--box-shadow-soft);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.benefit-item p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

/* SECTION 6: SOBRE NÓS */
.section-about {
    padding: 40px 0;
}

.about-card-navy {
    background: var(--color-navy-main);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    color: #ffffff;
    background-image: radial-gradient(circle at right center, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.about-content h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 900px;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold-main);
}

.stat-lbl {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* SECTION 7: OUTRAS SOLUÇÕES */
.cards-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.solution-card {
    position: relative;
    height: 280px;
    border-radius: var(--border-radius-md);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-fast);
}

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

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 19, 38, 0.4) 0%, rgba(10, 19, 38, 0.95) 100%);
    transition: var(--transition-fast);
}

.solution-card:hover .solution-overlay {
    background: linear-gradient(180deg, rgba(10, 19, 38, 0.2) 0%, rgba(10, 19, 38, 0.98) 100%);
}

.solution-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    color: #ffffff;
}

.solution-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.solution-content p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 15px;
}

.btn-arrow-gold {
    width: 36px;
    height: 36px;
    background: var(--color-gold-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy-dark);
    font-size: 0.9rem;
}

.badge-express {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* SECTION 8: CTA BANNER */
.section-cta-banner {
    padding: 40px 0 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #0f1c3f 0%, #0a1326 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-wsp-icon {
    font-size: 3rem;
    color: var(--color-green-wsp);
}

.cta-small {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-gold-main);

}

.cta-title {
    font-size: 1.6rem;
    color: #ffffff;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-features li {
    font-size: 0.9rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-features i {
    color: var(--color-green-wsp);
}

/* FOOTER */
.footer {
    background-color: var(--color-navy-dark);
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    padding: 70px 20px 40px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
}

.logo-footer {
    margin-bottom: 12px;
}

.slogan-footer {
    font-size: 0.8rem;
    color: var(--color-gold-main);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.footer-socials a:hover {
    background: var(--color-gold-main);
    color: var(--color-navy-dark);
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold-main);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: var(--color-gold-main);
}

.btn-footer-cta {
    width: 100%;
    padding: 12px;
    font-size: 0.85rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-green-wsp);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: var(--transition-fast);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1e293b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .cards-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    .cta-left {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .slogan-header, .header-divider {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: var(--color-navy-dark);
        padding: 40px 20px;
        transition: var(--transition-fast);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .nav-link {
        font-size: 1.1rem;
    }
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2rem;
    }
    .two-col-grid {
        grid-template-columns: 1fr;
    }
    .steps-timeline {
        flex-direction: column;
        gap: 30px;
    }
    .step-connector {
        display: none;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .btn-header {
        display: none;
    }
}

@media (max-width: 480px) {
    .cards-grid-8, .cards-grid-6, .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Força o container dos cards a ficar com 8 colunas lado a lado */
.analysis-cards, 
.analysis-grid,
div:has(> .analysis-card) {
    display: grid !important;
    grid-template-columns: repeat(8, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
}

/* Ajusta o espaçamento interno de cada card para caber os 8 em uma linha */
.analysis-card {
    padding: 15px 5px !important;
    min-width: 0 !important;
}
/* Força o aumento dos ícones do Como Funciona */
section:has(.step-number) i,
section:has(.step-number) svg,
div:has(> .step-number) ~ i,
div:has(> .step-number) ~ svg,
.how-it-works i,
.how-it-works svg,
.step-icon,
.process-icon {
    font-size: 3.5rem !important;
    width: 60px !important;
    height: 60px !important;
    display: block !important;
    margin: 15px auto !important;
}
/* Aumenta o tamanho dos ícones na Seção PARA QUEM É */
.section-para-quem i,
.section-para-quem svg {
    font-size: 2.8rem !important; /* Aumenta o tamanho */
    width: 45px !important;       /* Garante a largura */
    height: 45px !important;      /* Garante a altura */
}

/* Caso o ícone esteja dentro de uma caixinha/div própria */
.section-para-quem [class*="icon"] {
    font-size: 2.8rem !important;
    width: 45px !important;
    height: 45px !important;
}