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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Questrial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-logo h2,
.navbar.scrolled .nav-link {
    color: #FFFFFF;
}

.navbar.scrolled .nav-link:hover {
    color: #B20D0D;
}

.navbar.scrolled .nav-link::after {
    background-color: #B20D0D;
}

.navbar.scrolled .text-gvc-red {
    color: #B20D0D !important;
}

.navbar.scrolled .text-gvc-red:hover {
    color: #B20D0D !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h2 {
    font-size: 1.875rem;
    font-family: 'Fahkwang', sans-serif;
    text-transform: uppercase;
    margin: 0;
    color: #FFFFFF;
    font-weight: 700;
}

.text-gvc-red {
    color: #B20D0D;
}

.highlight-red {
    color: #B20D0D;
    font-weight: bold;
}

.hero h1 .highlight-red {
    color: #B20D0D !important;
    font-weight: bold;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-family: 'Fahkwang', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #B20D0D;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.8)), url('attached_assets/Design sem nome (5).webp'), url('attached_assets/Design sem nome (5).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero .container {
    max-width: 1500px;
    padding-left: 2vw;
    padding-right: 2vw;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-family: 'Fahkwang', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    width: 100%;
}

.hero-subtitle {
    font-family: 'Questrial', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.85);
    max-width: 85vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Botões CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #B20D0D;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Fahkwang', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #B20D0D;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(178, 13, 13, 0.3);
    margin-top: 2.5rem;
}

/* Centralização específica do botão na hero section */
.container.hero-content .cta-button {
    margin: 2.5rem auto 0 auto !important;
    display: block !important;
    width: fit-content !important;
    max-width: 100% !important;
    float: none !important;
    text-align: center !important;
}

.cta-button:hover {
    background: #8B0A0A;
    border-color: #8B0A0A;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(178, 13, 13, 0.4);
}

.cta-button.secondary {
    background: #B20D0D;
    border-color: #B20D0D;
    box-shadow: 0 4px 10px rgba(178, 13, 13, 0.3);
}

.cta-button.secondary:hover {
    background: #8B0A0A;
    border-color: #8B0A0A;
    box-shadow: 0 6px 15px rgba(178, 13, 13, 0.4);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Seções */
section {
    padding: 4rem 0;
}

section h2 {
    font-family: 'Fahkwang', sans-serif;
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

section h2::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #B20D0D;
}

.section-subtitle {
    font-family: 'Questrial', sans-serif;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

/* Cases Section */
.cases-section {
    background: #f8fafc;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.case-item {
    background: white;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    border-left: 4px solid #B20D0D;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.case-icon {
    color: #B20D0D;
    margin-bottom: 20px;
}

.case-item h3 {
    font-family: 'Fahkwang', sans-serif;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

/* Process Section */
.process-section {
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-icon {
    color: #B20D0D;
    margin: 30px 0 20px;
    filter: drop-shadow(0 4px 8px rgba(178, 13, 13, 0.3));
}

.process-step h3 {
    font-family: 'Fahkwang', sans-serif;
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    font-family: 'Questrial', sans-serif;
    color: #666;
    line-height: 1.7;
}

/* Target Section */
.target-section {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="justice-pattern" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><path d="M40 40 L80 40 M60 30 L60 50" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/><circle cx="100" cy="100" r="1.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23justice-pattern)"/></svg>');
    background-size: cover;
    color: white;
}

.target-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.target-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
}

.target-section h2::before {
    background-color: white;
}

.warning-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 5px;
    margin: 30px auto;
    border-left: 4px solid white;
    max-width: 800px;
    text-align: center;
}

.warning-box p {
    font-family: 'Questrial', sans-serif;
    font-size: 1.1rem;
    margin: 0;
}

/* About Section */
.about-section {
    background: #f8fafc;
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-text h2::before {
    left: 0;
    transform: none;
}

.about-text p {
    font-family: 'Questrial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
}

.footer-brand, .footer-contact, .footer-address {
    flex: 1 1 300px;
    min-width: 250px;
}

.footer-brand h2 {
    font-family: 'Fahkwang', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.footer-red {
    color: #B20D0D;
}

.footer-brand p {
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #B20D0D;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8B0A0A;
    transform: translateY(-2px);
}

.footer-contact h3,
.footer-address h3 {
    font-family: 'Fahkwang', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-divider {
    width: 50px;
    height: 3px;
    background: #B20D0D;
    margin-bottom: 20px;
}

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

.footer-contact li {
    font-family: 'Questrial', sans-serif;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: #B20D0D;
    width: 16px;
}

.address-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.address-content i {
    color: #B20D0D;
    margin-top: 4px;
    width: 16px;
}

.address-content span {
    font-family: 'Questrial', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-family: 'Questrial', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

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

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

/* Responsividade */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-brand, .footer-contact, .footer-address {
        min-width: 0;
        width: 100%;
        text-align: center;
    }
    

}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .case-item, .process-step {
        padding: 20px;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
}

/* Navbar ativa */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
