/* ========== ROOT VARIABLES & RESET ========== */
:root {
    --dark-navy: #003852;
    --teal: #0094ac;
    --deep-teal: #003844;
    --albion-teal: #0094ac;
    --white: #ffffff;
    --off-white: #f7f8f9;
    --light-gray: #e4e7ea;
    --text-dark: #1a2a33;
    --text-muted: #5a6b76;
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: clip;
}

/* ========== UTILITIES ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========== HEADER / NAV ========== */
.navbar {
    background: var(--white);
    height: 90px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 56, 82, 0.06);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    height: 64px;
    box-shadow: 0 4px 20px rgba(0, 56, 82, 0.08);
}

.navbar .logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .logo {
    height: 42px;
}

.navbar nav {
    display: flex;
    gap: 36px;
    align-items: center;
}

.navbar nav a {
    color: var(--dark-navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.navbar nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar nav a:hover {
    color: var(--teal);
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
    width: 100%;
}

.navbar nav a.active {
    color: var(--teal);
}

.navbar nav a:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 4px;
}

/* ========== HAMBURGER MENU TOGGLE ========== */
.menu-toggle-checkbox {
    display: none;
}

.menu-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark-navy);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease;
    transform-origin: center;
}

/* ========== HERO ========== */
.hero {
    background: var(--dark-navy);
    padding: 100px 48px 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0, 148, 172, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(0, 148, 172, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-brand-icon {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 504px;
    color: rgba(0, 148, 172, 0.12);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: clamp(32px, 5.5vw, 52px);
    color: var(--white);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-accent {
    width: 48px;
    height: 3px;
    background: var(--albion-teal);
    margin: 28px auto 24px;
    border-radius: 2px;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-subtitle {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: clamp(14px, 2vw, 17px);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== STATS BAR ========== */
.stats {
    background: var(--white);
    padding: 48px 48px;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.stats-row {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-number {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    color: var(--albion-teal);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Staggered reveal for stats */
.stats .stat-item:nth-child(1) { transition-delay: 0s; }
.stats .stat-item:nth-child(2) { transition-delay: 0.1s; }
.stats .stat-item:nth-child(3) { transition-delay: 0.2s; }

/* ========== QUEM SOMOS (TIMELINE) ========== */
.quem-somos {
    padding: 100px 48px;
    background: var(--white);
}

.section-title {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: clamp(12px, 1.5vw, 13px);
    color: var(--teal);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-subtitle {
    max-width: 560px;
    margin: -28px auto 56px;
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.section-subtitle strong {
    color: var(--dark-navy);
    font-weight: 600;
}

.timeline {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--light-gray);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    width: 50%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Left-side items */
.timeline-item[data-side="left"] {
    padding-right: 52px;
    justify-content: flex-end;
    margin-left: 0;
}

/* Right-side items */
.timeline-item[data-side="right"] {
    padding-left: 52px;
    margin-left: 50%;
}

/* Timeline dot */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 28px;
    width: 12px;
    height: 12px;
    background: var(--albion-teal);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--albion-teal);
    z-index: 2;
}

.timeline-item[data-side="left"]::before {
    right: -6px;
}

.timeline-item[data-side="right"]::before {
    left: -6px;
}

.timeline-year {
    position: absolute;
    top: 22px;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1px;
}

.timeline-item[data-side="left"] .timeline-year {
    right: -76px;
    text-align: left;
}

.timeline-item[data-side="right"] .timeline-year {
    left: -76px;
    text-align: right;
}

.timeline-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    border-left: 3px solid var(--teal);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease;
    max-width: 380px;
    width: 100%;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 56, 82, 0.1);
}

.timeline-card .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.timeline-card .card-body {
    padding: 24px 28px;
}

.timeline-card h3 {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 18px;
    color: var(--dark-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
}

.timeline-card .address {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== NOSSAS LOJAS ========== */
.lojas {
    padding: 100px 48px;
    background: var(--off-white);
}

.lojas .section-title {
    margin-bottom: 16px;
}

.lojas-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.lojas-brand {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--dark-navy);
}

.lojas-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(0, 148, 172, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
}

.lojas-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.loja-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 22px;
    border: 1px solid var(--light-gray);
    border-left: 3px solid transparent;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.loja-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 56, 82, 0.08);
    border-left-color: var(--teal);
}

.loja-card h3 {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 16px;
    color: var(--dark-navy);
    margin-bottom: 4px;
    font-weight: 700;
}

.loja-card .loja-address {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.loja-links {
    display: flex;
    gap: 16px;
}

.loja-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

.loja-links a:hover {
    color: var(--dark-navy);
}

.loja-links a:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

.loja-links a svg {
    flex-shrink: 0;
}

/* ========== REVENDEDOR STORES ========== */
.lojas-header--revendedor {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--light-gray);
}

.revendedor-description {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.lojas-grid--revendedor {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.loja-card--revendedor {
    position: relative;
    border-left-color: transparent;
}

.loja-card--revendedor:hover {
    border-left-color: var(--dark-navy);
}

.revendedor-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-navy);
    background: rgba(0, 56, 82, 0.07);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* ========== MISSAO / VISAO / VALORES ========== */
.missao-visao {
    padding: 100px 48px;
    background: var(--dark-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mvv-brand-icon {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    width: 380px;
    height: 456px;
    color: rgba(0, 148, 172, 0.08);
    pointer-events: none;
}

.mvv-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.mv-block {
    padding: 36px 28px;
    border-top: 3px solid var(--albion-teal);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 0 10px 10px;
}

.mv-block h3 {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--teal);
    text-transform: uppercase;
}

.mv-block p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.valores-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
}

.valor-tag {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: left;
    color: rgba(255, 255, 255, 0.75);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.valor-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 148, 172, 0.4);
}

/* ========== GESTAO ========== */
.gestao {
    padding: 120px 48px;
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

.gestao::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 30%, rgba(0, 148, 172, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(0, 148, 172, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gestao::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0, 148, 172, 0.3));
    pointer-events: none;
}

.gestao-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}

.gestao-label {
    display: inline-block;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
}

.gestao-title {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.gestao-rule {
    width: 48px;
    height: 2px;
    background: var(--teal);
    margin: 28px auto 0;
    border-radius: 1px;
}

.gestao-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.gestao-person {
    display: flex;
    flex-direction: column;
    position: relative;
}

.gestao-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3 / 4;
}

.gestao-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    z-index: 2;
    pointer-events: none;
    transition: border-color 0.5s ease;
}

.gestao-person:hover .gestao-img-wrap::before {
    border-color: rgba(0, 148, 172, 0.3);
}

.gestao-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 56, 82, 0.6) 0%,
        rgba(0, 56, 82, 0) 50%
    );
    z-index: 1;
    transition: opacity 0.5s ease;
}

.gestao-person:hover .gestao-overlay {
    opacity: 0.6;
}

.gestao-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.3);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.7s ease;
}

.gestao-person:hover .gestao-avatar {
    transform: scale(1.05);
    filter: grayscale(0);
}

.gestao-avatar.face-lower {
    object-position: center 10%;
}

.gestao-info {
    padding: 18px 4px 0;
}

.gestao-role {
    display: block;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 6px;
}

.gestao-person h3 {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.gestao-since {
    display: block;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
    letter-spacing: 0.3px;
    font-style: italic;
}

/* Staggered entrance for team members */
.gestao-grid .gestao-person:nth-child(1) { transition-delay: 0s; }
.gestao-grid .gestao-person:nth-child(2) { transition-delay: 0.1s; }
.gestao-grid .gestao-person:nth-child(3) { transition-delay: 0.2s; }
.gestao-grid .gestao-person:nth-child(4) { transition-delay: 0.3s; }

/* ========== TRABALHE CONOSCO ========== */
.trabalhe {
    padding: 100px 48px;
    background: var(--off-white);
}

.trabalhe-content {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.trabalhe-headline {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.trabalhe-divider {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--teal);
    margin: 24px auto;
    border-radius: 1px;
}

.trabalhe-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.trabalhe-thanks {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 36px;
    opacity: 0.8;
}

.trabalhe-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-trabalhe {
    display: inline-block;
    padding: 14px 36px;
    background: var(--albion-teal);
    color: var(--white);
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.btn-trabalhe:hover {
    background: #007a8f;
    transform: translateY(-1px);
}

.btn-trabalhe:focus-visible {
    outline: 2px solid var(--albion-teal);
    outline-offset: 4px;
}

.btn-trabalhe-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--dark-navy);
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid var(--dark-navy);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-trabalhe-outline svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-trabalhe-outline:hover {
    background: var(--dark-navy);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-trabalhe-outline:focus-visible {
    outline: 2px solid var(--dark-navy);
    outline-offset: 4px;
}

/* ========== FOOTER / CONTACT ========== */
.footer {
    background: var(--dark-navy);
    padding: 80px 48px 36px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(0, 148, 172, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(0, 148, 172, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.footer-brand-icon {
    position: absolute;
    right: -60px;
    bottom: -40px;
    width: 340px;
    height: 408px;
    color: rgba(0, 148, 172, 0.06);
    pointer-events: none;
    transform: rotate(15deg);
}

.footer-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-title {
    color: var(--teal);
    margin-bottom: 16px;
}

.footer-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 48px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.footer-block {
    text-align: center;
    padding: 40px 32px 36px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.35s ease,
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease;
}

.footer-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.footer-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-block:hover .footer-block-icon {
    transform: scale(1.08);
}

.footer-block-icon svg {
    width: 26px;
    height: 26px;
}

.footer-block--contato .footer-block-icon {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
}

.footer-block--contato:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.contato-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.contato-phone svg {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.contato-email {
    display: inline-block;
    margin-top: 14px;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contato-email:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-block--whatsapp .footer-block-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.footer-block--whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.25);
}

.footer-block--revendedor .footer-block-icon {
    background: rgba(0, 148, 172, 0.1);
    color: var(--teal);
}

.footer-block--revendedor:hover {
    border-color: rgba(0, 148, 172, 0.25);
}

.footer-block h3 {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-phone {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.whatsapp-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Barlow', Arial, sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-footer:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-footer svg {
    flex-shrink: 0;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--dark-navy);
}

.btn-whatsapp:hover {
    background: #1eba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 3px;
}

.btn-revendedor {
    background: rgba(0, 148, 172, 0.12);
    color: var(--white);
    border: 1px solid rgba(0, 148, 172, 0.25);
}

.btn-revendedor:hover {
    background: rgba(0, 148, 172, 0.22);
    box-shadow: 0 6px 20px rgba(0, 148, 172, 0.15);
}

.btn-revendedor:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--teal);
    background: rgba(0, 148, 172, 0.12);
    transform: translateY(-2px);
}

.social-links a:focus-visible {
    color: var(--teal);
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* ========== TABLET (1024px) ========== */
@media (max-width: 1024px) {
    .navbar {
        height: 76px;
        padding: 0 28px;
    }

    .navbar.scrolled {
        height: 60px;
    }

    .navbar .logo {
        height: 48px;
    }

    .navbar.scrolled .logo {
        height: 38px;
    }

    .navbar nav {
        gap: 24px;
    }

    .navbar nav a {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero {
        padding: 80px 28px 88px;
    }

    .hero-brand-icon {
        width: 340px;
        height: 408px;
        right: -40px;
    }

    .stats {
        padding: 36px 24px;
    }

    .stat-number {
        font-size: clamp(36px, 4.5vw, 48px);
    }

    .quem-somos,
    .lojas,
    .missao-visao,
    .gestao,
    .trabalhe {
        padding: 60px 24px;
    }

    /* Timeline collapses to single column on tablet */
    .timeline-line {
        left: 20px;
    }

    .timeline-item,
    .timeline-item[data-side="left"],
    .timeline-item[data-side="right"] {
        width: 100%;
        margin-left: 0;
        padding-left: 52px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item[data-side="left"]::before,
    .timeline-item[data-side="right"]::before {
        left: 14px;
        right: auto;
    }

    .timeline-item[data-side="left"] .timeline-year,
    .timeline-item[data-side="right"] .timeline-year {
        left: 42px;
        right: auto;
        top: -24px;
        text-align: left;
    }

    .timeline-item {
        margin-bottom: 52px;
        padding-top: 8px;
    }

    .lojas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .lojas-grid--revendedor {
        grid-template-columns: repeat(2, 1fr);
    }

    .lojas-header--revendedor {
        margin-top: 48px;
        padding-top: 36px;
    }

    .mvv-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .gestao {
        padding: 80px 24px;
    }

    .gestao-header {
        margin-bottom: 52px;
    }

    .footer {
        padding: 60px 28px 28px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 44px;
    }

    .footer-block--contato {
        grid-column: 1 / -1;
    }

    .footer-block {
        padding: 32px 24px 30px;
    }

    .footer-subtitle {
        margin-bottom: 36px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-subtitle {
        margin: -12px auto 40px;
        font-size: 15px;
    }
}

/* ========== MOBILE (768px) ========== */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0 20px;
    }

    .navbar.scrolled {
        height: 56px;
    }

    .navbar .logo {
        height: 40px;
    }

    .navbar.scrolled .logo {
        height: 36px;
    }

    .menu-toggle-label {
        display: flex;
    }

    .navbar nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin-top: 0;
        background: var(--white);
        border-top: 1px solid var(--light-gray);
        box-shadow: 0 12px 32px rgba(0, 56, 82, 0.1);
        border-radius: 0 0 12px 12px;
    }

    .navbar nav a {
        font-size: 13px;
        padding: 14px 24px;
        border-bottom: 1px solid rgba(0, 56, 82, 0.06);
        opacity: 0;
        transform: translateY(-8px);
        animation: none;
    }

    .navbar nav a:last-child {
        border-bottom: none;
        padding-bottom: 18px;
    }

    .navbar nav a:first-child {
        padding-top: 18px;
    }

    .navbar nav a::after {
        display: none;
    }

    #menu-toggle:checked ~ nav {
        display: flex;
    }

    #menu-toggle:checked ~ nav a {
        animation: navLinkReveal 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    #menu-toggle:checked ~ nav a:nth-child(1) { animation-delay: 0.05s; }
    #menu-toggle:checked ~ nav a:nth-child(2) { animation-delay: 0.1s; }
    #menu-toggle:checked ~ nav a:nth-child(3) { animation-delay: 0.15s; }
    #menu-toggle:checked ~ nav a:nth-child(4) { animation-delay: 0.2s; }

    @keyframes navLinkReveal {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hamburger animation when open */
    #menu-toggle:checked ~ .menu-toggle-label .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    #menu-toggle:checked ~ .menu-toggle-label .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle:checked ~ .menu-toggle-label .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Hero */
    .hero {
        padding: 64px 24px 72px;
    }

    .hero-brand-icon {
        width: 280px;
        height: 336px;
        right: -80px;
        opacity: 0.7;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero-accent {
        width: 36px;
        margin: 20px auto 18px;
    }

    .stats {
        padding: 32px 20px;
    }

    .stat-number {
        font-size: clamp(32px, 8vw, 40px);
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    /* Section padding */
    .quem-somos,
    .lojas,
    .missao-visao,
    .gestao,
    .trabalhe {
        padding: 60px 20px;
    }

    .trabalhe-body {
        font-size: 15px;
    }

    .section-subtitle {
        margin: -8px auto 36px;
        font-size: 14px;
        max-width: 90%;
    }

    /* Timeline mobile */
    .timeline-line {
        left: 16px;
    }

    .timeline-item,
    .timeline-item[data-side="left"],
    .timeline-item[data-side="right"] {
        padding-left: 44px;
        margin-bottom: 40px;
    }

    .timeline-item[data-side="left"]::before,
    .timeline-item[data-side="right"]::before {
        left: 10px;
        width: 10px;
        height: 10px;
    }

    .timeline-item[data-side="left"] .timeline-year,
    .timeline-item[data-side="right"] .timeline-year {
        left: 36px;
        font-size: 11px;
    }

    .timeline-card .card-img {
        height: 160px;
    }

    .timeline-card .card-body {
        padding: 18px 20px;
    }

    /* Store cards */
    .lojas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lojas-grid--revendedor {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lojas-header--revendedor {
        margin-top: 40px;
        padding-top: 32px;
    }

    .lojas-header {
        flex-direction: column;
        gap: 10px;
    }

    .loja-card {
        padding: 18px 16px;
    }

    .loja-card h3 {
        font-size: 15px;
    }

    .loja-card .loja-address {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .loja-links {
        gap: 14px;
    }

    .loja-links a {
        font-size: 11px;
    }

    /* Missao / Visao / Valores */
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvv-brand-icon {
        width: 260px;
        height: 312px;
        left: -100px;
        opacity: 0.6;
    }

    .mv-block {
        padding: 28px 22px;
    }

    .mv-block p {
        font-size: 14px;
    }

    .valor-tag {
        padding: 10px 14px;
        font-size: 12px;
    }

    /* Team (gestao) */
    .gestao {
        padding: 72px 20px;
    }

    .gestao::after {
        height: 48px;
    }

    .gestao-header {
        margin-bottom: 40px;
    }

    .gestao-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .gestao-rule {
        width: 36px;
        margin-top: 20px;
    }

    .gestao-grid {
        gap: 14px;
    }

    .gestao-info {
        padding: 14px 2px 0;
    }

    .gestao-role {
        font-size: 9px;
        letter-spacing: 2px;
        margin-bottom: 4px;
    }

    .gestao-person h3 {
        font-size: 15px;
    }

    .gestao-since {
        font-size: 11px;
    }

    /* Footer */
    .footer {
        padding: 60px 24px 28px;
    }

    .footer-brand-icon {
        width: 240px;
        height: 288px;
        right: -80px;
        bottom: -60px;
    }

    .footer-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .footer-block {
        padding: 32px 24px 28px;
    }

    .footer-block-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .footer-block-icon svg {
        width: 22px;
        height: 22px;
    }

    .footer-phone {
        font-size: 22px;
    }

    .btn-footer {
        font-size: 12px;
        padding: 12px 26px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }
}
