:root {
    --primary-gold: #c5a059;
    --secondary-gold: #b8933f;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-light: #e0e0e0;
    --text-gray: #a0a0a0;
    --white: #ffffff;
     /* Tipografia */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    
    /* Transições */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

p {
    color: var(--text-gray);
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
}

section {
    position: relative;
    padding: 80px 0;
}
/*
section:nth-child(even) {
    background-color: var(--dark-secondary);
} */

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.services-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0;
    padding: 12px 32px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-gold {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

.btn-primary-gold:hover {
    background-color: var(--secondary-gold);
    border-color: var(--secondary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

/* MODAL BARBEARIA */
.modal-barbearia {
    background-color: var(--dark-secondary);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.modal-barbearia-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--dark-bg);
}

.modal-barbearia-header h5 {
    font-family: var(--font-serif);
    color: var(--primary-gold);
    letter-spacing: 0.05em;
}

.modal-barbearia-body {
    color: var(--text-light);
    font-family: var(--font-sans);
}

.modal-barbearia-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--dark-bg);
}

/* GRUPOS */
.servico-grupo {
    margin-bottom: 28px;
}

.servico-titulo {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

/* ITENS */
.servico-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.servico-item strong {
    color: var(--white);
}

/* BOTÃO WHATSAPP */
.btn-whatsapp-modal {
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 0.08em;
}


/* Botão Premium WhatsApp */
.btn-premium-whatsapp {
    font-family: var(--font-sans);
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 34px;
    border-radius: 50px;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    background: transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Efeito hover elegante */
.btn-premium-whatsapp:hover {
    color: var(--dark-bg);
    background: linear-gradient(
        135deg,
        var(--primary-gold),
        var(--secondary-gold)
    );
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Efeito brilho sutil */
.btn-premium-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: var(--transition);
}

.btn-premium-whatsapp:hover::before {
    left: 100%;
}




.btn-schedule {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border: 2px solid var(--primary-gold);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 10px 24px;
}

.btn-schedule:hover {
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background-color: transparent;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo-img {
    height: 60px; /* Tamanho padrão para desktop */
    width: auto;
    transition: var(--transition);
    object-fit: contain;
}

/* Ajuste da logo quando o scroll acontece */
.navbar.scrolled .logo-img {
    height: 50px;
}

/* Responsividade da logo */
@media (max-width: 991px) {
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 40px;
    }
}

/* Custom Hamburger Menu */
.custom-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    background: transparent;
    box-shadow: none !important;
}

.custom-toggler:focus {
    outline: none;
    box-shadow: none;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-gold);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.top-bar { top: 0px; }
.middle-bar { top: 10px; }
.bottom-bar { top: 20px; }

/* Estado Fechado (Hambúrguer) */
.custom-toggler.collapsed .top-bar {
    top: 0px;
    transform: rotate(0deg);
}

.custom-toggler.collapsed .middle-bar {
    opacity: 1;
    left: 0;
}

.custom-toggler.collapsed .bottom-bar {
    top: 20px;
    transform: rotate(0deg);
}

/* Estado Aberto (X) */
.custom-toggler:not(.collapsed) .top-bar {
    top: 10px;
    transform: rotate(135deg);
}

.custom-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
    left: -60px;
}

.custom-toggler:not(.collapsed) .bottom-bar {
    top: 10px;
    transform: rotate(-135deg);
}

/* Custom Navbar Expand at 1024px */
@media (min-width: 1025px) {
    .navbar-expand-custom {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-custom .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-custom .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .navbar-expand-custom .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-expand-custom .navbar-toggler {
        display: none;
    }
}

@media (max-width: 1024px) {
    .navbar-expand-custom .navbar-collapse {
        display: none;
        width: 100%;
    }
    .navbar-expand-custom .navbar-collapse.show {
        display: block !important;
    }
    .navbar-expand-custom .navbar-toggler {
        display: block;
    }
    
    /* Ajustes que antes eram em 991px agora aplicados em 1024px */
    .navbar-collapse {
        background-color: rgba(10, 10, 10, 0.98);
        padding: 1.5rem;
        border-radius: 0;
        margin-top: 1rem;
        border: 1px solid rgba(197, 160, 89, 0.2);
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .btn-schedule {
        margin-left: 0 !important;
        width: 100%;
        justify-content: center;
    }
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    margin: 0 1rem;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}

.hero-label {
    display: inline-block;
    background-color: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--primary-gold);
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 40px;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-gold);
    text-transform: uppercase;
}

.scroll-arrow {
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: slide-down 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes slide-down {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* Benefits Section - Estilização dos Cards Horizontais */
.benefits-section {
    background-color: var(--dark-secondary);
    padding: 100px 0;
}

/* Container principal do card horizontal */
.benefit-card-horizontal {
    background-color: var(--dark-tertiary);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(197, 160, 89, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px; /* Leve arredondamento para um ar moderno */
}

/* Efeito de hover: leve deslocamento e destaque na borda */
.benefit-card-horizontal:hover {
    transform: translateY(-5px) translateX(5px);
    border-color: rgba(197, 160, 89, 0.4);
    background-color: rgba(197, 160, 89, 0.03);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
}

/* Linha decorativa lateral que aparece no hover */
.benefit-card-horizontal::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-card-horizontal:hover::after {
    transform: scaleY(1);
}

/* Estilização da "Thumbnail" / Ícone */
.benefit-thumbnail {
    min-width: 80px;
    height: 80px;
    background-color: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.benefit-card-horizontal:hover .benefit-thumbnail {
    background-color: var(--primary-gold);
    transform: rotate(-5deg) scale(1.1);
}

.benefit-thumbnail i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.benefit-card-horizontal:hover .benefit-thumbnail i {
    color: var(--dark-bg);
}

/* Conteúdo de texto do card */
.benefit-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.benefit-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Otimização de Responsividade para os Cards --- */

/* Tablets e telas médias (iPad, etc) */
@media (max-width: 991px) {
    .benefit-card-horizontal {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .benefit-thumbnail {
        min-width: 70px;
        height: 70px;
    }
    
    .benefit-thumbnail i {
        font-size: 1.75rem;
    }
    
    .benefit-info h4 {
        font-size: 1.25rem;
    }
}

/* Celulares grandes e médios */
@media (max-width: 767px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefit-card-horizontal {
        flex-direction: row; /* Mantém horizontal em celulares médios se houver espaço */
        text-align: left;
    }
}

/* Celulares pequenos (iPhone SE, etc) */
@media (max-width: 576px) {
    .benefit-card-horizontal {
        flex-direction: column; /* Empilha apenas em telas realmente pequenas */
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .benefit-thumbnail {
        margin: 0 auto 1.5rem auto;
    }
    
    .benefit-info p {
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    background-color: var(--dark-bg);
}

.service-card {
    background-color: var(--dark-tertiary);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(197, 160, 89, 0.15);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

.service-card.featured {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.2);
}

.service-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-12px);
    box-shadow: 0 12px 36px rgba(197, 160, 89, 0.25);
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.6) 100%);
    transition: all 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.15);
}

.service-card:hover .service-image::after {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.service-content {
    padding: 2.5rem 2rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.55rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1.3;
}

.service-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
    letter-spacing: 0.3px;
}

.service-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-service {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 10px 22px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-service:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-secondary);
}

.testimonial-card {
    background-color: var(--dark-tertiary);
    padding: 2.5rem;
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.testimonial-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.author-initial {
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-author h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* --- Correção de Alinhamento e Centralização da Badge --- */
.google-reviews-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 15px; /* Evita que a badge encoste nas bordas em telas pequenas */
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--dark-tertiary);
    padding: 1.2rem 2.5rem;
    border-radius: 100px; /* Pílula perfeita */
    border: 1px solid rgba(197, 160, 89, 0.2);
    gap: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    max-width: 100%; /* Garante que não ultrapasse o container */
}

.google-reviews-badge:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

/* Ícone do Google com cores características (opcional, mantendo dourado para luxo) */
.google-icon {
    font-size: 2.2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estrelas de avaliação */
.stars {
    color: #ffc107; /* Cor clássica de estrela */
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    gap: 2px;
}

.reviews-content {
    text-align: left;
}

.testimonial-count {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.testimonial-count span {
    color: var(--primary-gold);
    font-weight: 800;
    font-size: 1.3rem;
}

/* Nota numérica */
.google-rating {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
    text-align: center;
}

.google-rating strong {
    display: block;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
}

.google-rating span {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Otimização de Responsividade para a Badge do Google --- */

@media (max-width: 991px) {
    .google-reviews-badge {
        padding: 1.25rem 2rem;
        gap: 1.5rem;
    }
    
    .google-icon {
        font-size: 1.8rem;
    }
    
    .google-rating strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .google-reviews-badge {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 20px;
        width: 100%; /* Ocupa a largura disponível do container */
        max-width: 400px; /* Mas não fica gigante */
        text-align: center;
    }
    
    .google-rating {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 1rem;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .google-rating strong {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    
    .google-rating span {
        font-size: 0.9rem;
    }
    
    .reviews-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-count {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .google-reviews-badge {
        width: 95%;
        padding: 1.5rem 1rem;
    }
    
    .testimonial-count span {
        font-size: 1.1rem;
    }
}

/* About Section */
.about-section {
    background-color: var(--dark-bg);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background-color: var(--dark-tertiary);
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.stat h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.stat p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-section img {
    border: 2px solid var(--primary-gold);
    border-radius: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(10, 10, 10, 0.75) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    padding: 4rem 2rem;
    text-align: center;
    width: 100%;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-footer {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
}

/* Location Section */
.location-section {
    background-color: var(--dark-secondary);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.location-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-header {
    margin-bottom: 3rem;
}

.location-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.location-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.location-title .highlight {
    color: var(--primary-gold);
}

.location-info-group {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 160, 89, 0.15);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.btn-tracar-rota {
    
   
    padding: 14px 110px;
    text-align: center;
}

.location-right {
    display: flex;
    align-items: stretch;
}

.container{
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.map-container {
    width: 100%;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

/* Footer */
.footer-section {
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--text-gray);
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.footer-section h3 i {
    color: var(--primary-gold);
}

.footer-section h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--dark-tertiary);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-section hr {
    border-color: rgba(197, 160, 89, 0.1);
    margin: 2rem 0;
}

.footer-section a {
    color: var(--text-gray);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
    color: var(--primary-gold);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    background-color: #20ba5a;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Responsividade */


@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .location-title {
        font-size: 2.5rem !important;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .service-image {
        height: 220px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .location-title {
        font-size: 2rem !important;
    }
    
    .hero-section {
        min-height: 70vh;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
     .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 360px; /* evita botão gigante */
        margin: 0 auto;
        text-align: center;
        justify-content: center;
        font-size: 0.95rem;
        padding: 14px 20px;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-content {
        padding: 3rem 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat h4 {
        font-size: 2.5rem;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}


/* Botão Voltar ao Topo */
.btn-scroll-top {
    position: fixed;
    bottom: 100px; /* ajustado para ficar acima do WhatsApp */
    right: 36px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-gold);
    color: var(--dark-bg);

    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: var(--transition);
    z-index: 999;
}

.btn-scroll-top i {
    font-size: 1.2rem;
}

/* Estado visível */
.btn-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
.btn-scroll-top:hover {
    background: var(--secondary-gold);
    box-shadow: var(--shadow-lg);
}

/* ============================
   Responsividade - Scroll Top
============================ */

/* Tablets e notebooks menores */
@media (max-width: 991px) {
    .btn-scroll-top {
        bottom: 80px;
        right: 21px;
        width: 44px;
        height: 44px;
    }

    .btn-scroll-top i {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .btn-scroll-top {
        bottom: 80px; /* sobe para não colidir com barra do navegador */
        right: 23px;

        width: 40px;
        height: 40px;

        box-shadow: var(--shadow-sm);
    }

    .btn-scroll-top i {
        font-size: 1rem;
    }
}

