/*
Theme Name: Hello Elementor Child - Makiximus
Theme URI: https://makiximusempreendimentos.com.br
Template: hello-elementor
Author: Makiximus Empreendimentos
Description: Tema filho do Hello Elementor para Makiximus Empreendimentos - Construtora e Infraestrutura
Version: 1.0.0
Text Domain: hello-elementor-child

Powered by Elementor.
*/

/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
    --color-primary: #080808;
    --color-secondary: #4558C9;
    --color-white: #FFFFFF;
    --color-bg-light: #F5F5F5;
    --font-primary: 'Poppins', sans-serif;
    --border-radius: 25px;
    --transition-speed: 300ms;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
}

/* ===== STICKY HEADER ===== */
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(8, 8, 8, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header.scrolled {
    background-color: rgba(8, 8, 8, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

/* Header inner layout */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-title a {
    color: var(--color-white) !important;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Navigation */
.site-navigation {
    display: flex;
    align-items: center;
}

.site-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.site-navigation ul li {
    margin: 0;
    padding: 0;
}

.site-navigation ul li a {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

.site-navigation ul li a:hover,
.site-navigation ul li.current-menu-item a {
    color: var(--color-white) !important;
    background-color: rgba(69, 88, 201, 0.15);
}

/* Mobile menu toggle */
.site-navigation-toggle-holder {
    display: none;
}

/* ===== HERO SECTION ===== */
.elementor-section.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(8,8,8,0.95) 0%, 
        rgba(8,8,8,0.7) 40%, 
        rgba(8,8,8,0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-title strong {
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    border: 2px solid var(--color-white);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-primary);
}

.hero-btn:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===== SEÇÃO RESULTADOS ===== */
.section-resultados {
    background-color: var(--color-primary);
    padding: 100px 0;
}

.section-resultados .section-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-resultados .section-title strong {
    font-weight: 700;
    color: var(--color-secondary);
}

.section-resultados .section-text {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.8;
    max-width: 500px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--color-secondary);
    border: none;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary:hover {
    background: #3a4bb8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(69, 88, 201, 0.3);
}

/* Blue graphic element */
.graphic-element {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-secondary), #2a3a9e);
    border-radius: var(--border-radius);
    opacity: 0.8;
    position: relative;
    overflow: hidden;
}

.graphic-element::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-graphic 4s ease-in-out infinite;
}

@keyframes pulse-graphic {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ===== SEÇÃO MISSÃO/VISÃO/VALORES ===== */
.section-mvv {
    background-color: var(--color-white);
    padding: 100px 0;
}

.mvv-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.mvv-tab-btn {
    padding: 14px 35px;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    background: transparent;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mvv-tab-btn.active,
.mvv-tab-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.mvv-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeUp 0.5s ease;
}

.mvv-content.active {
    display: block;
}

.mvv-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.mvv-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ===== SEÇÃO SERVIÇOS ===== */
.section-servicos {
    padding: 0;
}

.servicos-topbar {
    background: var(--color-primary);
    padding: 60px 0 80px;
    text-align: center;
}

.servicos-topbar h2 {
    color: var(--color-white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.servicos-topbar p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1140px;
    margin: -50px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 2;
}

.servico-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-speed) ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.servico-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-secondary), #2a3a9e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--color-white);
}

.servico-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.servico-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* ===== SEÇÃO DIFERENCIAIS ===== */
.section-diferenciais {
    background: var(--color-primary);
    padding: 100px 0;
}

.diferenciais-container {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 60px;
    max-width: 1140px;
    margin: 0 auto;
}

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

.diferencial-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.diferencial-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.diferencial-card .icon {
    font-size: 40px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.diferencial-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.diferencial-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.section-cta {
    background: var(--color-white);
    padding: 100px 0;
    text-align: center;
}

.section-cta h2 {
    font-size: 48px;
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-cta h2 strong {
    font-weight: 700;
    color: var(--color-secondary);
}

/* ===== FOOTER ===== */
.site-footer-custom {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 30px;
    overflow: hidden;
}

.site-footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(8,8,8,0.95) 0%, 
        rgba(8,8,8,0.85) 50%, 
        rgba(8,8,8,0.9) 100%
    );
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
}

.footer-col ul li a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--color-secondary);
    width: 20px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin: 0;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.animate-fade-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.animate-fade-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.animate-zoom-in.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }

/* ===== RESPONSIVIDADE ===== */

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

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

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

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

    .graphic-element {
        width: 200px;
        height: 300px;
    }

    .section-cta h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    /* Header mobile */
    .site-header .header-inner {
        height: 60px;
    }

    .site-navigation {
        display: none;
    }

    .site-navigation-toggle-holder {
        display: block !important;
    }

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

    .site-navigation-toggle span {
        display: block;
        width: 28px;
        height: 2px;
        background: var(--color-white);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .site-navigation-dropdown {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(8,8,8,0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        z-index: 9998;
    }

    .site-navigation-dropdown.open {
        display: block;
    }

    .site-navigation-dropdown ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .site-navigation-dropdown ul li {
        margin-bottom: 5px;
    }

    .site-navigation-dropdown ul li a {
        display: block;
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-family: var(--font-primary);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .site-navigation-dropdown ul li a:hover {
        background: rgba(69, 88, 201, 0.2);
        color: var(--color-white);
    }

    /* Hero Mobile */
    .hero-title {
        font-size: 32px;
    }

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

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

    /* Sections Mobile */
    .section-resultados {
        padding: 60px 0;
    }

    .section-resultados .section-title {
        font-size: 28px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px 60px;
        margin-top: -30px;
    }

    .servicos-topbar {
        padding: 40px 0 60px;
    }

    .servicos-topbar h2 {
        font-size: 28px;
    }

    .section-diferenciais {
        padding: 60px 0;
    }

    .diferenciais-container {
        padding: 30px 20px;
        border-radius: 30px;
    }

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

    .section-cta {
        padding: 60px 0;
    }

    .section-cta h2 {
        font-size: 28px;
    }

    .btn-primary, .hero-btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer-custom {
        padding: 50px 0 20px;
    }

    .mvv-tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .graphic-element {
        width: 150px;
        height: 200px;
        margin: 30px auto 0;
    }

    .section-resultados .col-right {
        text-align: center !important;
    }

    .diferencial-card {
        padding: 25px 20px;
    }
}

/* ===== UTILITÁRIOS ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.w-100 { width: 100%; }
