/* ============================================
   GARAGEM 72 — SITE INSTITUCIONAL
   Cores: Preto #0D0D0D / Vermelho #CC0000 / Branco
   ============================================ */

:root {
    --black: #0D0D0D;
    --black-light: #1A1A1A;
    --black-card: #141414;
    --red: #CC0000;
    --red-dark: #A30000;
    --red-glow: rgba(204, 0, 0, 0.15);
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--white);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.text-red { color: var(--red); }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header--scrolled {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.header__logo { text-decoration: none; }

.header__logo-img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.header__link:hover { color: var(--white); }

.header__cta-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: var(--red);
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.2s;
}

.header__cta-link:hover { background: var(--red-dark); }

.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.header__menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__menu-btn.active span:nth-child(2) { opacity: 0; }
.header__menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(204,0,0,0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 24px;
}

.hero__title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero__text {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__experience {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(204,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero__experience-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.hero__experience-text {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--red);
    color: var(--white);
}

.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn--outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }

.btn--large { padding: 18px 36px; font-size: 17px; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--black-light);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 24px 0;
}

.trust-bar__inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
}

.trust-bar__item svg { color: var(--red); flex-shrink: 0; }

/* ============================================
   SECTIONS BASE
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-text {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
    border-color: rgba(204,0,0,0.3);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--red-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.services__cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.services__cta p {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 15px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--black-light);
}

.about__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.about__content .section-label,
.about__content .section-title {
    text-align: left;
}

.about__content p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.about__stat { text-align: center; }

.about__stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
}

.about__stat-label {
    font-size: 13px;
    color: var(--gray-500);
}

.about__team {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.team-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 16px;
}

.team-card__avatar--dennis { background: var(--red-glow); color: var(--red); }
.team-card__avatar--elaine { background: rgba(255,255,255,0.06); color: var(--white); }

.team-card h3 { font-size: 18px; margin-bottom: 4px; }

.team-card__role {
    font-size: 13px;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 12px;
    line-height: 1.5;
}

/* ============================================
   DIFFERENTIALS
   ============================================ */
.differentials {
    padding: 100px 0;
}

.differentials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diff-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.3s;
}

.diff-card:hover { border-color: rgba(204,0,0,0.3); }

.diff-card__number {
    font-size: 40px;
    font-weight: 900;
    color: var(--red);
    opacity: 0.3;
    margin-bottom: 12px;
}

.diff-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.diff-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
    padding: 100px 0;
    background: var(--black-light);
}

.brands__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.brand-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.3s;
}

.brand-card--highlight {
    border-color: rgba(204,0,0,0.3);
    background: rgba(204,0,0,0.04);
}

.brand-card__logo {
    display: block;
    width: auto;
    height: 48px;
    margin: 0 auto 12px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.brand-card:hover .brand-card__logo { opacity: 1; }

.brand-card--highlight .brand-card__logo { opacity: 1; }

.brand-card__name {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.brand-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 100px 0;
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process__step {
    position: relative;
    padding: 32px;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
}

.process__step-number {
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 16px;
}

.process__step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process__step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--black-light);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-card__stars {
    color: #FBBF24;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card__author { display: flex; flex-direction: column; }

.testimonial-card__name {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-card__source {
    font-size: 12px;
    color: var(--gray-500);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, rgba(204,0,0,0.08) 100%);
}

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

.cta-section h2 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--black-light);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact__info .section-label,
.contact__info .section-title {
    text-align: left;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact__detail {
    display: flex;
    gap: 16px;
}

.contact__detail svg {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact__detail strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

.contact__map {
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--black-card);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 64px 0 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo { height: 36px; width: auto; margin-bottom: 16px; display: block; }

.footer__brand p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.footer__links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--gray-300);
}

.footer__links a {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s;
}

.footer__links a:hover { color: var(--red); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 20px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-600);
}

.footer__bottom a {
    color: var(--red);
    text-decoration: none;
}

.footer__bottom a:hover { text-decoration: underline; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.2s;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__title { font-size: 48px; }
    .section-title { font-size: 32px; }
    .services__grid,
    .differentials__grid,
    .process__timeline,
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .cta-section h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(13,13,13,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .header__nav.active {
        opacity: 1;
        visibility: visible;
    }

    .header__nav .header__link {
        font-size: 20px;
        color: var(--white);
    }

    .header__nav .header__cta-link {
        font-size: 18px;
        padding: 14px 32px;
    }

    .header__menu-btn { display: flex; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__title { font-size: 36px; letter-spacing: -1px; }
    .hero__text { font-size: 16px; }
    .hero__visual { justify-content: flex-start; }
    .hero__experience { width: 140px; height: 140px; }
    .hero__experience-number { font-size: 40px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }

    .trust-bar__inner { gap: 24px; }
    .trust-bar__item { font-size: 13px; }

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

    .services__grid,
    .differentials__grid,
    .process__timeline,
    .testimonials__grid { grid-template-columns: 1fr; }

    .brands__grid { grid-template-columns: repeat(3, 1fr); }

    .about__inner { grid-template-columns: 1fr; }
    .about__stats { flex-wrap: wrap; gap: 24px; }

    .contact__inner { grid-template-columns: 1fr; }
    .contact__map { min-height: 300px; }

    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

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