/* =========================================
   1. CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================= */
:root {
    --primary-color: #d35400;
    --primary-dark: #a04000;
    --text-dark: #2c3e50;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--primary-color);
    font-weight: 500;
}

/* =========================================
   2. HEADER E NAVEGAÇÃO
   ========================================= */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    cursor: default;
}

.logo span {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* =========================================
   3. HERO SECTION (SPLIT + LOGO ANIMADO)
   ========================================= */
.logo {
    position: relative;
    width: 250px; 
    height: 50px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 180px;
    width: auto;
    position: absolute;
    top: -65px;
    left: 0;
    z-index: 1100;
    transition: transform 0.3s ease;
    pointer-events: none; 
}

.logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .logo {
        width: 140px;
    }
    
    .logo img {
        height: 100px;
        top: 0;
    }
} 

.hero-split {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #fff 0%, #f3f3f3 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.badge-hero {
    display: inline-block;
    background-color: rgba(211, 84, 0, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group-left {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
}

.pulse-effect {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(211, 84, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0); }
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-icons i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* =========================================
   4. SEÇÕES GERAIS (Sobre, Diferenciais)
   ========================================= */
.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =========================================
   5. GALERIA (SLIDER)
   ========================================= */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.gallery-card {
    min-width: 0; 
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.gallery-card:hover .card-overlay {
    transform: translateY(0);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* =========================================
   6. CONTATO
   ========================================= */
.contact-info ul {
    margin-top: 30px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-list .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(211, 84, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
    border: none;
    font-size: 1rem;
}

/* =========================================
   7. RODAPÉ (FOOTER)
   ========================================= */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-styled {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.brand-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.footer-brand-styled h2 {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-brand-styled h2 span {
    color: var(--primary-color);
    font-weight: 300;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.brand-desc {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-top: 10px;
}

.highlight {
    color: #fff;
    font-weight: 600;
    border-bottom: 1px dotted var(--primary-color);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    margin-top: 5px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4);
}

.map-container {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* =========================================
   8. ELEMENTOS FLUTUANTES E MODAL
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulse-border 1.5s infinite;
    top: 0;
    left: 0;
}

@keyframes pulse-border {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--text-dark);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    z-index: 999;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    background: white;
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
}

.lightbox-info {
    padding: 20px;
    text-align: center;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 { transition-delay: 0.2s; }
.delay-400 { transition-delay: 0.4s; }
.delay-600 { transition-delay: 0.6s; }

/* =========================================
   9. RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-split {
        padding-top: 120px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group-left {
        justify-content: center;
    }
    
    .trust-icons {
        justify-content: center;
    }

    .hero-main-logo {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
    }

    .nav-list.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .section-header h3 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px;
    }
    
    .footer-brand-styled {
        border-left: 3px solid var(--primary-color);
        padding-left: 15px;
    }
}

/* =========================================
   10. ASSINATURA VOIDCODE + AJUSTE SLIDER
   ========================================= */

.voidcode-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.void-text {
    color: #fff;
    font-weight: 700;
    transition: text-shadow 0.3s ease;
}

.code-text {
    color: #ffcc00;
    font-weight: 700;
    transition: text-shadow 0.3s ease;
}

.voidcode-link:hover {
    transform: scale(1.1) translateY(-2px);
}

.voidcode-link:hover .void-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
}

.voidcode-link:hover .code-text {
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.8), 0 0 20px rgba(255, 204, 0, 0.4);
}

.gallery-card {
    flex: 0 0 calc(100% - 20px);
}

@media (min-width: 601px) {
    .gallery-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (min-width: 901px) {
    .gallery-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}