
/* =========================================
   VARIÁVEIS & RESET
   ========================================= */
:root {
    --bg-primary: #070707;
    --bg-secondary: #0c0c0c;
    --surface: #141414;
    --surface-light: #1e1e1e;
    --red: #d31b24;
    --red-dark: #8a0f16;
    --orange: #e65c00;
    --white: #f0f0f0;
    --text-main: #e6e6e6;
    --text-muted: #8f8f8f;
    --border: rgba(255, 255, 255, 0.06);
    --glass: rgba(20, 20, 20, 0.72);
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
    --radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-title span {
    color: var(--red);
}

.section-sub {
    color: var(--text-muted);
    max-width: 580px;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(211, 27, 36, 0.25);
}

.btn-primary:hover {
    background: #b51820;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(211, 27, 36, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--bg-primary);
    border-color: var(--white);
}

.btn-ghost {
    color: var(--text-muted);
    font-weight: 600;
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--bg-primary);
}

.btn-whatsapp:hover {
    background: #1ebd5a;
    transform: translateY(-3px);
}

/* =========================================
   NAVBAR
   ========================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-cta .btn {
    padding: 10px 24px;
}

/* Mobile menu toggle (functional visual only) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    padding: 80px 0 60px;
    position: relative;
    background: radial-gradient(circle at 80% 50%, rgba(211, 27, 36, 0.08) 0%, transparent 60%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--red);
    text-shadow: 0 0 40px rgba(211, 27, 36, 0.25);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 32px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-stats div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats div::before {
    content: '✓';
    color: var(--red);
    font-weight: 900;
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: contrast(1.2) brightness(0.7);
    transition: transform 0.5s;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 27, 36, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.hero-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

/* =========================================
   BENEFÍCIOS
   ========================================= */
.benefits {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(211, 27, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.benefit-card .number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   MODALIDADES
   ========================================= */
.modalities {
    padding: 100px 0;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.modality-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 30px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.modality-card:hover {
    border-color: var(--red);
    transform: scale(1.02);
    background: #1a1a1a;
}

.modality-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--red);
}

.modality-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modality-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modality-card .btn {
    padding: 8px 20px;
    font-size: 0.75rem;
}

/* =========================================
   OBJETIVOS
   ========================================= */
.goals {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.goal-card {
    background: var(--surface);
    padding: 32px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
    transition: 0.3s;
}

.goal-card:hover {
    background: #1a1a1a;
    transform: translateY(-4px);
}

.goal-card .icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.goal-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.goal-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* =========================================
   DIFERENCIAIS
   ========================================= */
.differentials {
    padding: 100px 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.diff-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.diff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: contrast(1.1) brightness(0.7);
}

.diff-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(211, 27, 36, 0.3), transparent 60%);
}

.diff-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.diff-item {
    background: var(--surface);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.diff-item:hover {
    border-color: rgba(211, 27, 36, 0.3);
}

.diff-item .icon {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.diff-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.diff-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   SOBRE
   ========================================= */
.about {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.about-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 2rem;
}

.about-numbers div {
    background: var(--surface);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.about-numbers strong {
    display: block;
    font-size: 2rem;
    color: var(--red);
}

.about-numbers span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   ESTRUTURA (Galeria)
   ========================================= */
.structure {
    padding: 100px 0;
}

.structure-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.structure-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    background: var(--surface);
}

.structure-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.structure-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.8) contrast(1.2);
}

.structure-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
    pointer-events: none;
}

.structure-item .overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
}
.structure-item .overlay p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   METODOLOGIA
   ========================================= */
.methodology {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

.method-step {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.method-step .step-num {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: var(--red);
    color: white;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.method-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.method-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   TREINADORES
   ========================================= */
.trainers {
    padding: 100px 0;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.trainer-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.trainer-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
}

.trainer-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--surface-light);
    border: 2px solid var(--red);
    overflow: hidden;
}

.trainer-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
}

.trainer-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.trainer-card .spec {
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
}

.trainer-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0.5rem 0 1rem;
}

/* =========================================
   DEPOIMENTOS
   ========================================= */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonial-card .stars {
    color: #f5b342;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author .initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-card .author div small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =========================================
   HORÁRIOS
   ========================================= */
.hours {
    padding: 100px 0;
}

.hours-wrapper {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hours-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    color: var(--text-muted);
}

.hours-list div strong {
    color: var(--white);
}

/* =========================================
   FAQ
   ========================================= */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

details {
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 20px 24px;
    transition: 0.3s;
}

details[open] {
    border-color: var(--red);
    background: #1a1a1a;
}

summary {
    font-weight: 700;
    cursor: pointer;
    color: var(--white);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--red);
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   CONTATO
   ========================================= */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info .icon {
    font-size: 1.8rem;
    color: var(--red);
    width: 40px;
}

.contact-info h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-info p {
    color: var(--text-muted);
}

.contact-form {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(211, 27, 36, 0.15);
}

.contact-form .form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* =========================================
   CTA
   ========================================= */
.cta {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.cta-box {
    background: linear-gradient(135deg, #1a0a0a 0%, var(--surface) 80%);
    border-radius: var(--radius);
    padding: 60px 40px;
    border: 1px solid rgba(211, 27, 36, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 27, 36, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-content {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
}

.cta-content p {
    color: var(--text-muted);
    max-width: 440px;
    margin: 1rem 0 1.5rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-image {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--red);
    box-shadow: 0 0 40px rgba(211, 27, 36, 0.2);
    background: var(--surface);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) brightness(0.8);
}

/* =========================================
   RODAPÉ
   ========================================= */
footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col .logo {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    margin-left: 16px;
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 1024px) {
    .hero-grid { gap: 30px; }
    .diff-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta .btn {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-tags {
        justify-content: center;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-image-wrapper {
        max-width: 100%;
        aspect-ratio: 4/3;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .diff-list {
        grid-template-columns: 1fr;
    }
    .about-numbers {
        grid-template-columns: 1fr;
    }
    .hours-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .hours-list {
        grid-template-columns: 1fr;
    }
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
    .cta-image {
        width: 140px;
        height: 140px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom a {
        margin: 0 8px;
    }
    .contact-form {
        padding: 24px;
    }
    .section-sub {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   VARIÁVEIS & RESET
   ========================================= */
:root {
    --bg-primary: #070707;
    --bg-secondary: #0c0c0c;
    --surface: #141414;
    --surface-light: #1e1e1e;
    --red: #d31b24;
    --red-dark: #8a0f16;
    --orange: #e65c00;
    --white: #f0f0f0;
    --text-main: #e6e6e6;
    --text-muted: #8f8f8f;
    --border: rgba(255, 255, 255, 0.06);
    --glass: rgba(20, 20, 20, 0.72);
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
    --radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-title span {
    color: var(--red);
}

.section-sub {
    color: var(--text-muted);
    max-width: 580px;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px rgba(211, 27, 36, 0.25);
}

.btn-primary:hover {
    background: #b51820;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(211, 27, 36, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--bg-primary);
    border-color: var(--white);
}

.btn-ghost {
    color: var(--text-muted);
    font-weight: 600;
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--bg-primary);
}

.btn-whatsapp:hover {
    background: #1ebd5a;
    transform: translateY(-3px);
}

/* =========================================
   NAVBAR
   ========================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-cta .btn {
    padding: 10px 24px;
}

/* Mobile menu toggle (functional visual only) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    padding: 80px 0 60px;
    position: relative;
    background: radial-gradient(circle at 80% 50%, rgba(211, 27, 36, 0.08) 0%, transparent 60%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--red);
    text-shadow: 0 0 40px rgba(211, 27, 36, 0.25);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 32px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.hero-stats div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats div::before {
    content: '✓';
    color: var(--red);
    font-weight: 900;
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: contrast(1.2) brightness(0.7);
    transition: transform 0.5s;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(211, 27, 36, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.hero-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

/* =========================================
   BENEFÍCIOS
   ========================================= */
.benefits {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(211, 27, 36, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.benefit-card .number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   MODALIDADES
   ========================================= */
.modalities {
    padding: 100px 0;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.modality-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 30px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.modality-card:hover {
    border-color: var(--red);
    transform: scale(1.02);
    background: #1a1a1a;
}

.modality-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--red);
}

.modality-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modality-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modality-card .btn {
    padding: 8px 20px;
    font-size: 0.75rem;
}

/* =========================================
   OBJETIVOS
   ========================================= */
.goals {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.goal-card {
    background: var(--surface);
    padding: 32px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--red);
    transition: 0.3s;
}

.goal-card:hover {
    background: #1a1a1a;
    transform: translateY(-4px);
}

.goal-card .icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.goal-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.goal-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* =========================================
   DIFERENCIAIS
   ========================================= */
.differentials {
    padding: 100px 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.diff-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.diff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: contrast(1.1) brightness(0.7);
}

.diff-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(211, 27, 36, 0.3), transparent 60%);
}

.diff-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.diff-item {
    background: var(--surface);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.diff-item:hover {
    border-color: rgba(211, 27, 36, 0.3);
}

.diff-item .icon {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.diff-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.diff-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   SOBRE
   ========================================= */
.about {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.about-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 2rem;
}

.about-numbers div {
    background: var(--surface);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.about-numbers strong {
    display: block;
    font-size: 2rem;
    color: var(--red);
}

.about-numbers span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   ESTRUTURA (Galeria)
   ========================================= */
.structure {
    padding: 100px 0;
}

.structure-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.structure-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    background: var(--surface);
}

.structure-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.structure-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.8) contrast(1.2);
}

.structure-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
    pointer-events: none;
}

.structure-item .overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
}
.structure-item .overlay p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================
   METODOLOGIA
   ========================================= */
.methodology {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

.method-step {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.method-step .step-num {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: var(--red);
    color: white;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.method-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.method-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   TREINADORES
   ========================================= */
.trainers {
    padding: 100px 0;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.trainer-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.trainer-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
}

.trainer-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--surface-light);
    border: 2px solid var(--red);
    overflow: hidden;
}

.trainer-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
}

.trainer-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.trainer-card .spec {
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
}

.trainer-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0.5rem 0 1rem;
}

/* =========================================
   DEPOIMENTOS
   ========================================= */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonial-card .stars {
    color: #f5b342;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author .initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-card .author div small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =========================================
   HORÁRIOS
   ========================================= */
.hours {
    padding: 100px 0;
}

.hours-wrapper {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hours-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    color: var(--text-muted);
}

.hours-list div strong {
    color: var(--white);
}

/* =========================================
   FAQ
   ========================================= */
.faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

details {
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 20px 24px;
    transition: 0.3s;
}

details[open] {
    border-color: var(--red);
    background: #1a1a1a;
}

summary {
    font-weight: 700;
    cursor: pointer;
    color: var(--white);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--red);
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   CONTATO
   ========================================= */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info .icon {
    font-size: 1.8rem;
    color: var(--red);
    width: 40px;
}

.contact-info h5 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-info p {
    color: var(--text-muted);
}

.contact-form {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(211, 27, 36, 0.15);
}

.contact-form .form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* =========================================
   CTA
   ========================================= */
.cta {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.cta-box {
    background: linear-gradient(135deg, #1a0a0a 0%, var(--surface) 80%);
    border-radius: var(--radius);
    padding: 60px 40px;
    border: 1px solid rgba(211, 27, 36, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 27, 36, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-content {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
}

.cta-content p {
    color: var(--text-muted);
    max-width: 440px;
    margin: 1rem 0 1.5rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-image {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--red);
    box-shadow: 0 0 40px rgba(211, 27, 36, 0.2);
    background: var(--surface);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) brightness(0.8);
}

/* =========================================
   RODAPÉ
   ========================================= */
footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col .logo {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    margin-left: 16px;
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 1024px) {
    .hero-grid { gap: 30px; }
    .diff-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta .btn {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-tags {
        justify-content: center;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-image-wrapper {
        max-width: 100%;
        aspect-ratio: 4/3;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .diff-list {
        grid-template-columns: 1fr;
    }
    .about-numbers {
        grid-template-columns: 1fr;
    }
    .hours-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .hours-list {
        grid-template-columns: 1fr;
    }
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
    .cta-image {
        width: 140px;
        height: 140px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom a {
        margin: 0 8px;
    }
    .contact-form {
        padding: 24px;
    }
    .section-sub {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}



