/* ============================
   DIGITRON – style.css
   ============================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:      #dc2626;
    --red-dark: #b91c1c;
    --bg:       #111111;
    --bg2:      #1a1a1a;
    --bg3:      #242424;
    --card-bg:  #1e1e1e;
    --border:   #2e2e2e;
    --white:    #ffffff;
    --gray:     #9ca3af;
    --font:     'Barlow', sans-serif;
    --nav-h:    72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.text-red   { color: var(--red); }
.text-center { text-align: center; }
.link-red   { color: var(--red); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.link-red:hover { text-decoration: underline; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 2rem;
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .1s;
    border-radius: 3px;
}
.btn--red  { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); }
.btn--lg   { font-size: 1.05rem; padding: 1rem 2.5rem; }
.btn--full { width: 100%; justify-content: center; }
.btn:active { transform: scale(.98); }
.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.1); }

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(10,10,10,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background .3s;
}
.navbar.scrolled { background: rgba(10,10,10,1); }

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: .1em;
}
.navbar__logo img { height: 42px; width: auto; }

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.navbar__links a {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--gray);
    transition: color .2s;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--white); }

.navbar__cta { padding: .55rem 1.4rem; font-size: .82rem; border-radius: 3px; }

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: .3s;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    margin-top: var(--nav-h);
    background: url('https://images.unsplash.com/photo-1701518366704-74513aeece12?w=1920&auto=format&fit=crop&q=80') center/cover no-repeat, var(--bg2);
    overflow: hidden;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.65) 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    padding: 5rem 1.5rem;
}
.hero__line {
    width: 80px;
    height: 3px;
    background: var(--red);
    margin-bottom: 1.5rem;
}
.hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero__subtitle {
    font-size: clamp(.95rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255,255,255,.85);
    max-width: 620px;
}

/* ---------- SECTIONS ---------- */
.section { padding: 5rem 0; }

/* Garante que o nav fixo não tape o título ao rolar */
section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

.section__sub {
    color: var(--gray);
    font-size: 1rem;
    margin-top: -.5rem;
    margin-bottom: 2rem;
}

.section__heading {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: .8rem;
}
.section__heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px;
    height: 3px;
    background: var(--red);
}

/* ---------- SERVICE CARDS ---------- */
.services-grid { display: grid; gap: 1.2rem; }
.services-grid--2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    padding: 1.4rem 1.2rem;
    transition: border-color .2s, background .2s;
}
.service-card:hover { background: #222; border-left-color: var(--red-dark); }

.service-card__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(220,38,38,.15);
    border: 1px solid rgba(220,38,38,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--red);
    border-radius: 6px;
    overflow: hidden;
}
.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.service-card:hover .service-card__icon img { transform: scale(1.08); }
.service-card__body h3 {
    font-size: .88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .4rem;
}
.service-card__body p { font-size: .85rem; color: var(--gray); line-height: 1.5; }

/* ---------- STATS ---------- */
.stats-section { background: var(--bg2); }

.stats-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}
.stat-item {
    border-left: 3px solid var(--red);
    padding-left: 1rem;
}
.stat-item__number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.stat-item__label {
    font-size: .82rem;
    color: var(--gray);
    margin-top: .25rem;
    display: block;
}
.stats-image {
    width: 280px;
    height: 220px;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid var(--border);
}
.stats-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA ---------- */
.cta-section { background: var(--bg3); }
.cta-section--dark { background: #161616; }
.cta-section__title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: .8rem;
}
.cta-section__sub { color: var(--gray); margin-bottom: 1.8rem; font-size: .9rem; }

/* ---------- ABOUT ---------- */
.about-section { background: var(--bg); }
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-text p {
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.about-image {
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid var(--border);
    min-height: 260px;
    background: var(--bg3);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image--placeholder { display: flex; align-items: center; justify-content: center; }

/* ---------- PILLARS ---------- */
.pillars-section { background: var(--bg2); }
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.pillar__icon {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: .8rem;
}
.pillar__title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .4rem;
    text-transform: uppercase;
}
.pillar__desc { font-size: .82rem; color: var(--gray); line-height: 1.5; }

/* ---------- LOCATION ---------- */
.location-section { background: var(--bg); }
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.location-map iframe {
    border-radius: 4px;
    border: 2px solid var(--border) !important;
}

/* ---------- CONTACT ITEMS ---------- */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
    font-size: .95rem;
    color: rgba(255,255,255,.85);
}
.contact-item i { font-size: 1.2rem; margin-top: .15rem; flex-shrink: 0; }
.contact-item a { color: rgba(255,255,255,.85); }
.contact-item a:hover { color: var(--red); }

/* ---------- CONTACT FORM ---------- */
.contact-section { background: var(--bg2); }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}
.contact-form-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 4px;
}
.contact-form-box__title {
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: .05em;
}
.form-group input,
.form-group textarea {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: var(--white);
    font-family: var(--font);
    font-size: .9rem;
    padding: .75rem 1rem;
    border-radius: 3px;
    outline: none;
    transition: border-color .2s;
    resize: vertical;
}
/* ---------- FOOTER – ver estilos completos no bloco NOVOS COMPONENTES ---------- */

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(220,38,38,.45);
    z-index: 999;
    transition: transform .2s, background .2s;
}
.whatsapp-float:hover { transform: scale(1.08); background: var(--red-dark); }

/* ---------- SERVICES FULL PAGE ---------- */
.services-full { background: var(--bg); }

/* ---------- LOCALIZAÇÃO PAGE ---------- */
.location-page-section { background: var(--bg); }

.loc-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}

.loc-address-card,
.loc-hours-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.loc-address-row,
.loc-hours-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.loc-address-row i,
.loc-hours-row i { font-size: 1.1rem; margin-top: .2rem; flex-shrink: 0; }

.loc-label {
    display: block;
    font-size: .72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .15rem;
}
.loc-address-row strong,
.loc-hours-row strong {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
}
.loc-hours-row.closed strong { color: var(--gray); }

.loc-contact-links {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.loc-contact-btn {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    padding: .9rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    transition: background .2s;
}
.loc-contact-btn:hover { background: #222; color: var(--red); }
.loc-contact-btn i { font-size: 1.2rem; color: var(--red); }

.loc-map-wrap iframe {
    border-radius: 4px;
    border: 2px solid var(--border) !important;
    display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-layout { grid-template-columns: 1fr; }
    .stats-image { width: 100%; height: 200px; }
}

@media (max-width: 768px) {
    .navbar__toggle { display: flex; }
    .navbar__links {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(10,10,10,.98);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        transform: translateY(-120%);
        transition: transform .3s;
        border-bottom: 1px solid var(--border);
    }
    .navbar__links.open { transform: translateY(0); }
    .navbar__links li { width: 100%; text-align: center; }
    .navbar__links a { display: block; padding: .9rem 1.5rem; }
    .navbar__cta { margin: .5rem auto; display: inline-flex; }

    .hero { min-height: 360px; }
    .hero__content { padding: 3.5rem 1.5rem; }

    .services-grid--2 { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; }
    .location-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }

    .loc-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .hero__title { font-size: 1.9rem; }
    .section { padding: 3.5rem 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-item__number { font-size: 1.6rem; }
    .contact-form-box { padding: 1.2rem; }
    .loc-address-card, .loc-hours-card { padding: 1.1rem; }
}

/* ============================
   ANIMAÇÕES & EFEITOS
   ============================ */

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX( 40px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* stagger delay para grids */
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

/* ---------- HERO ANIMADO ---------- */
.hero__line {
    transition: width .8s ease;
    width: 0;
}
.hero__line.animated { width: 80px; }

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero__title    { animation: fadeSlideUp .8s ease .2s both; }
.hero__subtitle { animation: fadeSlideUp .8s ease .45s both; }
.hero__actions  { animation: fadeSlideUp .8s ease .65s both; }

/* ---------- SERVICE CARDS HOVER ---------- */
.service-card {
    transition: transform .25s ease, background .2s, border-color .2s, box-shadow .25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    background: #252525;
    border-left-color: var(--red);
    box-shadow: 0 8px 28px rgba(220,38,38,.18), 0 2px 8px rgba(0,0,0,.3);
}
.service-card__icon {
    transition: background .2s, transform .25s ease;
}
.service-card:hover .service-card__icon {
    background: rgba(220,38,38,.28);
    transform: scale(1.1);
}

/* ---------- PILLAR HOVER ---------- */
.pillar {
    padding: 1.2rem;
    border-radius: 6px;
    transition: background .2s, transform .25s ease;
}
.pillar:hover {
    background: var(--bg3);
    transform: translateY(-4px);
}
.pillar__icon {
    transition: transform .25s ease;
}
.pillar:hover .pillar__icon { transform: scale(1.15); }

/* ---------- BOTÕES RIPPLE ---------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.12);
    opacity: 0;
    transition: opacity .2s;
    border-radius: inherit;
}
.btn:active::after { opacity: 1; }

/* ---------- NAVBAR LINK HOVER ---------- */
.navbar__links a {
    position: relative;
}
.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .25s ease;
}
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

/* ---------- STAT ITEM DESTAQUE ---------- */
.stat-item {
    transition: transform .2s ease;
}
.stat-item:hover { transform: translateX(4px); }

/* ---------- LOC CONTACT BTN ---------- */
.loc-contact-btn {
    transition: background .2s, transform .2s, color .2s;
}
.loc-contact-btn:hover {
    transform: translateX(4px);
}

/* ---------- WHATSAPP PULSE ---------- */
@keyframes pulse-ring {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(220,38,38,.5); }
    70%  { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(220,38,38,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}
.whatsapp-float {
    animation: pulse-ring 2.5s infinite;
}
.whatsapp-float:hover { animation: none; transform: scale(1.1); }

/* ---------- SECTION HEADING LINHA ---------- */
.section__heading::after {
    transition: width .5s ease .3s;
    width: 0;
}
.section__heading.line-animated::after { width: 50px; }

/* ---------- MOBILE EXTRA ---------- */
@media (max-width: 768px) {
    .hero { min-height: 100svh; }
    .hero__content { padding: 4rem 1.5rem 3rem; }
    .btn--lg { font-size: .95rem; padding: .85rem 1.8rem; }
    .service-card:hover { transform: none; box-shadow: none; }
    .pillar:hover { transform: none; }
}

/* ============================
   NOVOS COMPONENTES
   ============================ */

/* ---------- HERO BADGE ---------- */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(220,38,38,.15);
    border: 1px solid rgba(220,38,38,.4);
    color: var(--red);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 2px;
    margin-bottom: 1.2rem;
    animation: fadeSlideUp .7s ease .05s both;
}

/* ---------- CARD NÚMERO ---------- */
.service-card { position: relative; overflow: hidden; }
.service-card__num {
    position: absolute;
    top: .8rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(220,38,38,.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color .25s ease;
}
.service-card:hover .service-card__num { color: rgba(220,38,38,.18); }

/* ---------- DEPOIMENTOS ---------- */
.testimonials-section { background: var(--bg2); }

.rating-summary {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.rating-summary__score { font-size: 1.6rem; font-weight: 900; color: var(--white); }
.rating-summary__stars { color: #f59e0b; font-size: 1rem; display: flex; gap: .15rem; }
.rating-summary__count { font-size: .85rem; color: var(--gray); }

.testimonial-card--cta {
    align-items: center;
    text-align: center;
    justify-content: center;
}
.testimonial-card--cta__icon { font-size: 2rem; color: var(--red); margin-bottom: .3rem; }
.testimonial-card--cta__text { font-size: .92rem; color: var(--gray); line-height: 1.6; margin-bottom: .6rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .25s ease, border-color .25s, box-shadow .25s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220,38,38,.35);
    box-shadow: 0 8px 28px rgba(220,38,38,.12);
}

.testimonial-card__stars { color: #f59e0b; font-size: .95rem; display: flex; gap: .2rem; }

.testimonial-card__text {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
    font-style: italic;
}
.testimonial-card__text::before { content: '\201C'; color: var(--red); font-size: 1.4rem; font-style: normal; line-height: 0; vertical-align: -.3em; margin-right: .15em; }

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: .9rem; font-weight: 700; color: var(--white); }
.testimonial-card__author span   { font-size: .78rem; color: var(--gray); }

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card:hover { transform: none; }
}

/* ---------- FORM FOCUS LINHA VERMELHA ---------- */
.form-group { position: relative; }
.form-group input,
.form-group textarea {
    background: var(--bg3);
    border: none;
    border-bottom: 2px solid var(--border);
    border-radius: 4px 4px 0 0;
    transition: border-color .25s, background .25s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--red);
    background: #2a2a2a;
    box-shadow: none;
}

/* ---------- FOOTER NOVO ---------- */
.footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    padding: 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 3rem;
    padding: 3.5rem 1.5rem 2.5rem;
}

.footer__col--brand {}

.footer__logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    margin-bottom: 1rem;
}
.footer__logo img { height: 36px; width: auto; }
.footer__logo span {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .08em;
}

.footer__desc {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    max-width: 260px;
}

.footer__socials {
    display: flex;
    gap: .7rem;
}
.footer__socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--gray);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
    text-decoration: none;
}
.footer__socials a:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    transform: translateY(-2px);
}

.footer__col-title {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer__links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: .55rem;
}
.footer__links a {
    font-size: .88rem;
    color: var(--gray);
    text-decoration: none;
    transition: color .2s, padding-left .2s;
}
.footer__links a:hover { color: var(--red); padding-left: 4px; }

.footer__contact-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: .7rem;
}
.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .86rem;
    color: var(--gray);
    line-height: 1.5;
}
.footer__contact-list li i { margin-top: .15rem; flex-shrink: 0; }
.footer__contact-list a { color: var(--gray); text-decoration: none; transition: color .2s; }
.footer__contact-list a:hover { color: var(--red); }

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 1.2rem 1.5rem;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: #555;
    flex-wrap: wrap;
    gap: .5rem;
}

@media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom-inner { justify-content: center; text-align: center; }
}
