/* Go Print Brasil - CSS Completo
  Cores Baseadas na Logo: 
  Preto (#000000), Amarelo (#FFCC00), Azul (#1A5B9C), Vermelho (#E3000F)
*/

:root {
    --color-black: #000000;
    --color-black-light: #1A1A1A;
    --color-yellow: #FFCC00;
    --color-blue: #1A5B9C;
    --color-red: #E3000F;
    --color-white: #FFFFFF;
    --color-gray-light: #F4F4F9;
    --color-gray-medium: #666666;
    --color-gray-dark: #333333;
    
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-gray-dark);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-black);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-gray-light);
}

.bg-dark {
    background-color: var(--color-black-light);
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

.text-white h2, .text-white p {
    color: var(--color-white);
}

/* ================= HEADER ================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-black);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-yellow);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ================= BUTTONS ================= */
.btn-primary {
    display: inline-block;
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-yellow);
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-black);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-white);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.w-100 { width: 100%; }

/* ================= HERO ================= */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,91,156,0.2) 100%);
    z-index: 1;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.stage-light {
    position: absolute;
    top: -20%;
    left: 10%;
    width: 150px;
    height: 150vh;
    background: linear-gradient(180deg, rgba(255, 204, 0, 0.15) 0%, transparent 100%);
    transform: rotate(-30deg);
    filter: blur(20px);
}

.stage-light.right {
    left: auto;
    right: 10%;
    transform: rotate(30deg);
    background: linear-gradient(180deg, rgba(26, 91, 156, 0.15) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn-primary:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
}

/* ================= SOBRE & NÚMEROS ================= */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.sobre-texto p {
    font-size: 1.1rem;
    color: var(--color-gray-medium);
}

.numeros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.numero-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid var(--color-yellow);
    text-align: center;
}

.numero-card h3 {
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
}

.numero-card p {
    font-weight: 600;
    margin: 0;
    color: var(--color-black);
}

.icon-equipe {
    color: var(--color-blue);
    margin-bottom: 0.5rem;
}

/* ================= SOLUÇÕES & MODAL ================= */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-gray-medium);
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solucao-card {
    position: relative;
    cursor: pointer;
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border-top: 4px solid transparent;
}

.solucao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-red);
}

.badge-fotos {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; background-color: var(--color-red); }
    100% { transform: scale(1); opacity: 0.9; }
}

.solucao-icon {
    color: var(--color-yellow);
    margin-bottom: 1.5rem;
    background: var(--color-black);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.solucao-card h3 {
    font-size: 1.3rem;
}

.solucao-card p {
    color: var(--color-gray-medium);
    margin: 0;
}

/* Modal de Galeria */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
}

.modal-wrapper {
    background-color: var(--color-black-light);
    border: 1px solid #222;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.modal-wrapper h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-yellow);
    padding-bottom: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.close-modal:hover {
    color: var(--color-red);
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 20px;
}

.modal-gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 2px solid #333;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.modal-gallery-grid img:hover {
    transform: scale(1.02);
    border-color: var(--color-yellow);
}

/* ================= PORTFÓLIO ================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.placeholder-img {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #e0e0e0, #f5f5f5);
    transition: transform 0.5s ease;
}

.portfolio-item:hover .placeholder-img {
    transform: scale(1.05);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--color-white);
}

.portfolio-info h3 {
    color: var(--color-white);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.portfolio-info p {
    font-size: 0.9rem;
    margin: 0;
    color: #cccccc;
}

/* ================= DIFERENCIAIS ================= */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diff-card {
    background: #222;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-yellow);
}

.diff-card h4 {
    color: var(--color-white);
    font-size: 1.2rem;
}

.diff-card p {
    color: #aaaaaa;
    margin: 0;
}

/* ================= PROCESSO ================= */
.processo-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.processo-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-black);
    color: var(--color-yellow);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
}

.processo-step::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #dddddd;
    z-index: 1;
}

.processo-step:last-child::before {
    display: none;
}

.processo-step h4 {
    font-size: 1.2rem;
}

/* ================= CONTATO ================= */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contato-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contato-texto h3 {
    color: var(--color-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contato-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contato-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--color-gray-light);
    transition: border-color var(--transition-speed) ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    background-color: var(--color-white);
}

.btn-primary.w-100:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* ================= FOOTER ================= */
#footer {
    background-color: var(--color-black);
    color: #aaaaaa;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 350px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a:hover {
    color: var(--color-yellow);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* ================= ANIMAÇÕES ================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVIDADE ================= */
@media (max-width: 992px) {
    .sobre-grid, .contato-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .processo-step::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner .nav-links, .header-inner .desktop-only {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* Modal Responsivo */
    .gallery-modal {
        padding: 20px 10px;
    }
    .modal-wrapper {
        padding: 20px 15px;
    }
    .modal-wrapper h3 {
        font-size: 1.4rem;
        padding-right: 30px;
    }
    .modal-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .modal-gallery-grid img {
        height: 180px;
    }
}