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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Oswald', 'Segoe UI', 
                'Ubuntu', 'Cantarell', 'Poppins','Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-color: #ffffff;
            color: #1a1a1a;
            line-height: 1.6;
        }

        /* Screen Reader Only - Para acessibilidade */
        .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;
        }

        /* Variáveis de design */
        :root {
            --master-red: #8B0000;
            --master-dark: #1a1a1a;
            --master-light: #f5f5f5;
            --master-gray: #666;
            --master-white: #ffffff;
            
            /* Border Radius */
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 15px;
            
            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.15);
            
            /* Spacing */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            
            /* Typography */
            --font-main: 'Oswald', sans-serif;
            --font-body: 'Segoe UI', sans-serif;
        }

        /* Animações */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animação do Header: fade + slide down */
        @keyframes slideDownFade {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Underline animado para links */
        @keyframes underlineSlide {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Scroll reveal effect */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Focus visible para acessibilidade */
        *:focus-visible {
            outline: 3px solid var(--master-red);
            outline-offset: 2px;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 3px solid var(--master-red);
            outline-offset: 2px;
        }

/* ══════════════════════════════════════════════════════════════════ */
/* HEADER / NAVBAR - Minimalista, aparece com animação ao sair do hero */
/* ══════════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    z-index: 998;
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estado: navbar visível */
.navbar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: slideDownFade 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

/* ─────────────────────────────────────────────────────────────── */
/* LOGO */
/* ─────────────────────────────────────────────────────────────── */

.navbar-logo {
    flex: 0 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    object-fit: cover;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B0000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────── */
/* MENU DESKTOP */
/* ─────────────────────────────────────────────────────────────── */

.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline simples no hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #8B0000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #8B0000;
}

/* ─────────────────────────────────────────────────────────────── */
/* CTA BUTTON (WHATSAPP) DESKTOP */
/* ─────────────────────────────────────────────────────────────── */

.navbar-cta {
    flex: 0 0 auto;
}

.btn-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #8B0000;
    color: white;
    padding: 10px 18px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-nav-whatsapp:hover {
    background-color: #6B0000;
    transform: translateY(-1px);
}

.btn-nav-whatsapp i {
    font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────── */
/* MOBILE MENU (HAMBURGER) */
/* ─────────────────────────────────────────────────────────────── */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ─────────────────────────────────────────────────────────────── */
/* MOBILE MENU OVERLAY */
/* ─────────────────────────────────────────────────────────────── */

.navbar-mobile {
    position: fixed;
    top: 65px;
    right: -280px;
    width: 280px;
    height: calc(100vh - 65px);
    background-color: #1a1a1a;
    border-left: 1px solid #2a2a2a;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 997;
}

.navbar-mobile.active {
    right: 0;
}

.nav-list-mobile {
    list-style: none;
    padding: 15px 0;
}

.nav-list-mobile li {
    border-bottom: 1px solid #2a2a2a;
}

.nav-link-mobile {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover {
    background-color: #252525;
    color: #8B0000;
    padding-left: 22px;
}

.mobile-cta-item {
    border: none;
    padding: 15px!important;
}

.btn-mobile-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background-color: #8B0000;
    color: white;
    padding: 11px!important;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-mobile-whatsapp:hover {
    background-color: #6B0000;
    transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────────────────── */
/* RESPONSIVO - MOBILE */
/* ──────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .navbar-container {
        height: 60px;
        padding: 0 15px;
    }

    .logo-text {
        display: none;
    }

    .logo-img {
        width: 28px;
        height: 28px;
    }

    /* Esconder menu desktop */
    .navbar-menu {
        display: none;
    }

    .navbar-cta {
        display: none;
    }

    /* Mostrar hamburger */
    .hamburger {
        display: flex;
    }

    .navbar-mobile {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* ──────────────────────────────────────────────────────────────── */

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--master-dark);
    background-size: cover;
    background-position: center;
}

/* Vídeo de fundo */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay para melhorar legibilidade do texto */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero p {
  font-family: 'oswald', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 10px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}


.hero-ctas-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #8B0000;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.scroll-indicator p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: white;
}

.scroll-indicator svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    animation: bounce 2s infinite;
}

/* Animações */

/* Para dispositivos móveis */
@media (max-width: 768px) {

    
    .hero {
        background-attachment: scroll; /* Remove parallax em mobile */
    }
    .logohero {
        width: 300px;
        max-width: 90%;
    }  
    .hero p {
        letter-spacing: 5px;
        font-size: 1.5rem;
    }

    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero p {
        font-size: 1.8rem;
        letter-spacing: 8px;
    }
    
    .logohero {
        width: 400px;
    }
    
    .navbar-container {
        padding: 0 30px;
    }
    
    .nav-list {
        gap: 1.8rem;
    }
    
    .container {
        width: 95%;
    }
    
    .slide-card {
        min-width: calc(50% - 10px);
    }
}  

        /* Botões */

        /* Sistema de Botões Unificado */
        .btn,
        .btn-primary,
        .location-card .btn,
        .btn-instagram {
            display: inline-block;
            background-color: transparent;
            color: #1a1a1a;
            padding: 15px 35px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid #1a1a1a;
            border-radius: 0;
            cursor: pointer;
        }

        .btn:hover,
        .btn-primary:hover,
        .location-card .btn:hover,
        .btn-instagram:hover {
            background-color: #1a1a1a;
            color: #fff;
        }

        .btn:active,
        .btn-primary:active {
            transform: scale(0.98);
        }

        .btn-secondary {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Seções */
        section {
            width: 100%;
            padding: 4rem 1rem;
        }

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

        /* Sistema de Títulos Unificado */
        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--master-dark);
            letter-spacing: 1px;
        }

        .section-divider {
            width: 4rem;
            height: 0.25rem;
            background-color: var(--master-red);
            margin: 1rem auto;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

  /* About Section */
#masterSection {
    background-color: #fafafa;
    padding: 60px 0;
}

.container {
            max-width: 1200px;
            width: 90%;
            margin: 50px auto;
            display: flex;
            flex-wrap: wrap;
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        /* --- COLUNA ESQUERDA (TEXTO) --- */
        .text-column {
            flex: 1;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-width: 300px;
        }

        .logo-placeholder {
            font-size: 2.2rem; /* Ajustei levemente para caber Master Carnes */
            font-weight: 900;
            text-transform: uppercase;
            color: #333;
            margin-bottom: 5px;
            line-height: 0.9;
        }
        
        .logo-sub {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 30px;
            color: #8B0000; /* Destaque em vermelho */
        }

        hr.divider {
            width: 100%;
            border: 0;
            border-top: 1px solid #ccc;
            margin: 20px 0;
        }

     .container   h2 {
            font-size: 1.2rem;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

    .container    p {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 480px; /* Aumentei um pouco para o texto novo */
        }

        /* Botão Saiba Mais */
        .cta-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            width: 100%;
            max-width: 480px;
            cursor: pointer;
        }

        .cta-text {
            text-transform: lowercase;
            font-size: 1rem;
            color: #333;
            margin-right: 15px;
            transition: color 0.3s;
        }

        .cta-box {
            width: 40px;
            height: 40px;
            border: 1px solid #8B0000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .cta-arrow {
            color: #333;
            font-size: 1.2rem;
        }

        .cta-container:hover .cta-box {
            background-color: #8B0000;
        }
        .cta-container:hover .cta-arrow {
            color: #fff;
        }

        /* --- COLUNA DIREITA (IMAGENS) --- */
/* Container da coluna de imagem */
.image-column {
    flex: 1;
    position: relative;
    min-height: 500px;
    min-width: 300px;
    background-color: #333;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Imagens do Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Setas de Navegação (Esquerda/Direita) */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3); /* Fundo semitransparente */
    color: white;
    border: none;
    cursor: pointer;
    padding: 16px;
    font-size: 18px;
    transition: 0.3s;
    z-index: 10;
    border-radius: 50%; /* Botão redondo */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(191, 30, 46, 0.9); /* Vermelho ao passar o mouse */
}

/* Container das Bolinhas (Dots) */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%); /* Centraliza horizontalmente */
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Estilo da Bolinha */
.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 2px solid transparent; /* Aumenta a área de clique */
}

/* Bolinha Ativa */
.dot.active, .dot:hover {
    background-color: #fff;
    transform: scale(1.2); /* Cresce um pouquinho quando ativa */
}
        /* --- RESPONSIVIDADE --- */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            /* .overlay-image and .floating-badge removed (not used) */
            .text-column {
                padding: 40px 20px;
            }
        }
        
        /* Animação */
        .hidden {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-out;
        }
        .visible {
            opacity: 1;
            transform: translateY(0);
        }
        .image-column {
        min-height: unset;
        height: auto;
        aspect-ratio: 16 / 9;
        width: 100%;
        min-width: 0;
    }
/* Locations Section */
.locations {
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
                url("../img/fundocarne.jpg") center/cover;
    padding: 5rem 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.location-header {
    background: linear-gradient(135deg, #8B0000 0%, #8B0000 100%);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1544025162-d76694265947?w=400&h=200&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.location-header h3 {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.location-body h3 {
    display: none; /* Escondido porque já está no header */
}

.location-info {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.location-info p {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
}

.location-info .address {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}

.location-info .hours {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
    padding-left: 0;
    position: relative;
}

.location-info .phone {
    color: #8B0000;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.5rem;
    padding-left: 0;
}

/* Estilo para os ícones sem emoji */
.location-info p::before {
    content: '';
    margin-right: 0;
    font-size: 1.1rem;
}

/* Container do mapa */
.map-container {
    flex-grow: 1;
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    min-height: 250px;
    background: #f9f9f9;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: none;
    display: block;
}
.location-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.location-tabs .tab {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  border: 2px solid #8B0000;
  background: transparent;
  color: #8B0000;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-tabs .tab.active {
  background: #8B0000;
  color: #fff;
}

.location-tabs .tab:hover {
  background: #8B0000;
  color: #fff;
}

.location-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* Animação suave ao trocar unidade */
.location-card {
  transition: opacity 0.3s ease;
}

.location-card.changing {
  opacity: 0.7;
}

/* Botão já está consolidado no topo do arquivo */

/* location-indicators removed (not used in HTML) */

/* Responsividade */
@media (max-width: 768px) {
    .locations {
        padding: 3rem 0;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .location-image {
        height: 280px;
    }
    
    .location-header {
        padding: 1.5rem;
    }
    
    .location-header h3 {
        font-size: 1.5rem;
    }
    
    .location-body {
        padding: 1.5rem;
    }
    
    .map-container {
        min-height: 200px;
        margin: 1rem 0;
    }
    
    .location-info p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .location-header {
        padding: 1.25rem;
    }
    
    .location-body {
        padding: 1.25rem;
    }
    
    .map-container {
        min-height: 180px;
    }
}

        /* Instagram Section */
/* --- CONFIGURAÇÃO DA SEÇÃO (CLARO) --- */
.portfolio-section {
    background-color: #ffffff;
    color: #333;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Título já está consolidado no topo do arquivo */

.section-subtitle {
    color: #666; /* Subtítulo Cinza */
}

/* Tag Vermelha */
.highlight-tag {
    color: #8B0000;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

/* --- ESTRUTURA DO SLIDER --- */
.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track-container {
    overflow: hidden;
    width: 100%;
    margin: 0 50px;
}

.slider-track {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}

/* --- CARD INDIVIDUAL --- */
.slide-card {
    min-width: calc(33.333% - 14px); 
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.slide-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.slide-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.slide-card:hover img {
    transform: scale(1.05);
}

/* Legenda (Mantive escura para contraste com a foto) */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); /* Gradiente preto */
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide-card:hover .slide-caption {
    transform: translateY(0);
}

.slide-caption h3 {
    font-family: 'Oswald', sans-serif;
    color: #fff; /* Texto branco SOBRE a foto */
    margin: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.slide-caption p {
    color: #ddd;
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}

/* --- BOTÕES DE NAVEGAÇÃO (ESCUROS AGORA) --- */
.slider-btn {
    background-color: #fff; /* Fundo branco */
    color: #1a1a1a; /* Seta preta */
    border: 1px solid #ddd; /* Borda cinza suave */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background-color: #8B0000; /* Vermelho no hover */
    color: #fff;
    border-color: #8B0000;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* --- BOTÃO INSTAGRAM (VERSÃO CLARA) --- */
.portfolio-footer {
    text-align: center;
    margin-top: 40px;
}

/* .btn-instagram agora está consolidado no sistema de botões unificado */

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .slide-card {
        min-width: 100%;
    }
    .slider-track-container {
        margin: 0;
    }
    .slider-btn {
        background-color: rgba(255,255,255,0.9);
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}
        /* YouTube Section */
        .youtube {
            background: #1a1a1a;
            color: #fff;
            padding: 80px 0;
            position: relative;
        }

        .youtube::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1626379953822-baec19502227?w=1920&q=80') center/cover fixed;
            opacity: 0.15;
            z-index: 0;
        }

        .youtube .section-container {
            position: relative;
            z-index: 1;
        }

        .youtube .section-title,
        .youtube .section-subtitle {
            color: #fff;
        }

        .youtube .section-divider {
            background-color: #8B0000;
        }

        .youtube-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .youtube-video {
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .youtube-video:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transform: translateY(-8px);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background-color: #000;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

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

        /* Botão dentro da seção YouTube precisa ser branco */
        .youtube .btn,
        .youtube .btn-primary {
            color: #fff;
            border-color: #fff;
        }

        .youtube .btn:hover,
        .youtube .btn-primary:hover {
            background-color: #fff;
            color: #1a1a1a;
        }

        /* Delivery Section */
/* --- CONFIGURAÇÃO DA SEÇÃO --- */
.delivery-premium {
    background: linear-gradient(135deg, #8B0000 0%, #5a0000 100%);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

.delivery-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/dentroMaster.jpg') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.delivery-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- COLUNA DE TEXTO --- */
.delivery-text {
    flex: 1;
    max-width: 500px;
}

.highlight-tag {
    font-family: 'Oswald', sans-serif;
    color: #ff6b6b;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.delivery-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.delivery-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* --- LISTA DE PASSOS (O SUBSTITUTO DOS CARDS) --- */
.steps-list {
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #ccc; /* Cinza claro */
    font-weight: 700;
    margin-right: 20px;
    line-height: 1;
    position: relative;
}

/* Linha vermelha decorativa no número */
.step-number::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #8B0000;
}

.step-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* --- BOTÃO --- */
.btn-delivery {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.btn-delivery:hover {
    background-color: #fff;
    color: #8B0000;
}

/* --- COLUNA DE IMAGEM --- */
.delivery-image {
    flex: 1;
    position: relative;
}

.delivery-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.1); /* Sombra sólida deslocada */
    filter: grayscale(20%); /* Leve desaturação para ficar chique */
    transition: filter 0.3s;
}

.delivery-image img:hover {
    filter: grayscale(0%);
}

/* Badge flutuante sobre a imagem */
.float-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #8B0000;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Redondo */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    font-size: 0.8rem;
    text-align: center;
    transform: rotate(-10deg); /* Leve inclinação */
}

.float-badge strong {
    font-size: 1.2rem;
    display: block;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .delivery-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .delivery-text {
        max-width: 100%;
        text-align: left;
    }
    
    .delivery-image {
        width: 100%;
    }
    
    .float-badge {
        bottom: 10px;
        left: 10px;
    }
}

   /* --- CONFIGURAÇÕES GERAIS --- */
.butcher-footer {
background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), 
                url('../img/unidade2.jpg');
    
    background-size: cover; 
    background-position: center;
    background-attachment: fixed;
    
    color: #e0e0e0;
    font-family: 'Oswald', sans-serif;
    border-top: 8px solid #8B0000;
    position: relative;
}

/* Faixa decorativa no topo */
.footer-top-strip {
    background-color: #8B0000;
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 5px 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* --- COLUNA 1: MARCA --- */
.butcher-logo {
    font-size: 3.5rem;
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

/* Linha Tracejada (Estilo Corte de Carne) */
.dashed-line {
    width: 150px;
    height: 2px;
    background-image: linear-gradient(to right, #8B0000 50%, transparent 50%);
    background-size: 15px 100%; /* Tamanho do traço */
    margin-bottom: 20px;
}

.brand-tagline {
    font-family: 'Segoe UI', sans-serif; /* Fonte normal para leitura */
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 30px;
    font-style: italic;
}

/* Botão de Destaque */
.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #fff;
    transition: all 0.3s;
    box-shadow: 4px 4px 0px #8B0000; /* Sombra sólida dura */
}

.cta-button:hover {
    background-color: #8B0000;
    color: #fff;
    border-color: #8B0000;
    box-shadow: 0px 0px 0px #000; /* Sombra some ao clicar */
    transform: translate(2px, 2px);
}

.cta-button .icon {
    margin-right: 10px;
}
/* Container que força um embaixo do outro */
.action-area {
    display: flex;
    flex-direction: column; /* É isso que faz ficar embaixo */
    gap: 20px; /* Espaço entre o botão e o card */
    align-items: flex-start; /* Alinha tudo à esquerda */
    margin-top: 10px;
}

/* Ajustes finos no Card do Google */
.google-review-card {
    background-color: #fff;
    border-radius: 6px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    width: fit-content; /* O card só ocupa o tamanho necessário */
    min-width: 160px; /* Largura mínima para não ficar espremido */
    /* Removemos o margin-top antigo pois o gap do .action-area já resolve */
    margin-top: 0; 
}

.google-header {
    margin-bottom: 5px;
}

.review-score {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.score-num {
    color: #333;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
}

.stars {
    color: #F4B400;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.review-count {
    color: #666;
    font-size: 0.75rem;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* --- COLUNA 2: INFO --- */
.footer-title {
    font-size: 1.5rem;
    color: #8B0000;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 4px solid #fff;
    padding-left: 10px;
}

.info-list {
    list-style: none;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

.info-list li {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 0.95rem;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.info-list strong {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

/* --- COLUNA 3: SOCIAL --- */
.social-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: block;
    padding: 12px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #333;
    transition: 0.3s;
}

.social-btn:hover {
    background-color: #8B0000;
    border-color: #8B0000;
}

/* --- COPYRIGHT --- */
.footer-bottom {
    background-color: #000;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #111;
}

.footer-bottom p {
    margin: 5px 0;
}

.dev-credit {
    font-size: 0.75rem;
    color: #666;
    margin-top: 10px;
}

.dev-credit a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-credit a:hover {
    color: #fff;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .dashed-line {
        margin: 0 auto 20px auto; /* Centraliza a linha */
    }
    
    .footer-title {
        border-left: none;
        border-bottom: 2px solid #8B0000;
        display: inline-block;
        padding-bottom: 5px;
    }
    .action-area {
        align-items: center; /* Centraliza os botões no mobile */
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background-color: #8B0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #6B0000;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
    transform: scale(1.1);
}

.whatsapp-float i {
    color: #ffffff;
    font-size: 35px;
}

.whatsapp-text {
    position: absolute;
    background-color: #8B0000;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
}

/* Animação de flutuação */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}