/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #0E0E0E;
    --grafite: #1C1C1C;
    --grafite-claro: #2A2A2A;
    --dourado: #C9A24D;
    --dourado-claro: #e0b340;
    --dourado-escuro: #b08a3a;
    --branco: #F2F2F2;
    --branco-suave: #E8E8E8;
    --cinza: #888888;
    --cinza-escuro: #444444;
    --cinza-claro: #AAAAAA;
    --verde-whatsapp: #25D366;
    --verde-whatsapp-escuro: #128C7E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--preto);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

section {
    padding: 80px 0;
    width: 100%;
}

.full-width {
    padding-left: 0;
    padding-right: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--branco);
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--dourado);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cinza);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.full-width-title {
    padding: 0 20px;
    margin-bottom: 40px;
}

/* BOTÕES */
.btn {
    display: inline-block;
    background-color: var(--dourado);
    color: var(--preto);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--dourado-claro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 162, 77, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-glow {
    box-shadow: 0 0 15px rgba(201, 162, 77, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(201, 162, 77, 0.6);
}

.btn-servico {
    display: inline-block;
    background-color: transparent;
    color: var(--dourado);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--dourado);
    margin-top: 15px;
}

.btn-servico:hover {
    background-color: var(--dourado);
    color: var(--preto);
}

/* ========== NAVBAR CORRIGIDA ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(14, 14, 14, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Logo RESPONSIVA */
.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dourado);
    text-decoration: none;
    z-index: 1002;
    white-space: nowrap;
}

.logo span {
    color: var(--branco);
}

/* Menu desktop */
.nav-center {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    background-color: rgba(28, 28, 28, 0.7);
    padding: 8px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 77, 0.2);
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: var(--branco-suave);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--dourado);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--dourado);
}

.nav-links a:hover:after {
    width: 100%;
}

/* Botão agendar no desktop */
.nav-right {
    display: block;
}

.nav-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
}

/* Menu Mobile Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--branco);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(28, 28, 28, 0.8);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background-color: var(--dourado);
    color: var(--preto);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--preto);
    z-index: 1003;
    padding: 80px 20px 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--dourado);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    position: absolute;
    top: 15px;
    right: 15px;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--dourado);
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-close-btn:hover {
    background-color: var(--dourado);
    color: var(--preto);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.mobile-menu li:last-child {
    border-bottom: none;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 162, 77, 0.2);
}

.mobile-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    transition: all 0.3s;
    position: relative;
    padding-left: 15px;
}

.mobile-link:hover {
    color: var(--dourado);
    padding-left: 20px;
}

.mobile-cta {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    background-color: var(--dourado);
    color: var(--preto);
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

.mobile-cta:hover {
    background-color: var(--dourado-claro);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(201, 162, 77, 0.3);
}

/* Overlay quando menu está aberto */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(14, 14, 14, 0.85), rgba(14, 14, 14, 0.9)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(14, 14, 14, 0.9) 0%, rgba(14, 14, 14, 0.7) 50%, rgba(14, 14, 14, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: left;
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--branco);
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--branco-suave);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cinza-claro);
    font-weight: 500;
    font-size: 0.95rem;
}

.feature i {
    color: var(--dourado);
    font-size: 1.1rem;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--dourado);
    border-radius: 15px;
    margin: 0 auto 8px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background-color: var(--dourado);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 25px;
    }
}

/* ========== SOBRE SECTION COM EFEITO 3D ========== */
.sobre {
    background-color: var(--preto);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dourado);
}

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--branco-suave);
}

.sobre-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat h3 {
    font-size: 2rem;
    color: var(--dourado);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: var(--cinza);
    margin-bottom: 0;
}

/* CONTAINER 3D PARA A IMAGEM */
.sobre-img {
    position: relative;
    perspective: 1500px; /* Aumenta a profundidade do 3D */
}

.img-3d-container {
    position: relative;
    width: 100%;
    height: 400px;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg); /* Efeito 3D inicial */
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.5),
        -10px -10px 25px rgba(201, 162, 77, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

/* Efeito de hover mais pronunciado */
.img-3d-container:hover {
    transform: rotateY(5deg) rotateX(0deg) translateY(-10px);
    box-shadow: 
        25px 25px 50px rgba(0, 0, 0, 0.6),
        -15px -15px 30px rgba(201, 162, 77, 0.15),
        inset 0 0 40px rgba(0, 0, 0, 0.4);
}

/* Borda dourada sutil */
.img-3d-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(201, 162, 77, 0.3);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
    transition: all 0.5s ease;
}

.img-3d-container:hover::before {
    border-color: rgba(201, 162, 77, 0.6);
    transform: scale(0.98);
}

.sobre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
    filter: brightness(0.9) contrast(1.1);
    transform: translateZ(20px); /* Eleva a imagem no espaço 3D */
}

.img-3d-container:hover img {
    transform: translateZ(30px) scale(1.05);
    filter: brightness(1) contrast(1.2);
}

/* Sombra projetada para efeito de profundidade */
.img-3d-container::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: 20px;
    height: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(15px);
    transform: rotateX(80deg) translateZ(-50px);
    transition: all 0.8s ease;
    z-index: 1;
}

.img-3d-container:hover::after {
    bottom: -20px;
    left: 25px;
    right: 25px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    filter: blur(20px);
}

/* Responsividade para o efeito 3D */
@media (max-width: 768px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

     .scroll-indicator {
        display: none !important;
    }
    
    .img-3d-container {
        height: 300px;
        transform: rotateY(-10deg) rotateX(3deg); /* Efeito mais suave no mobile */
    }
    
    .img-3d-container:hover {
        transform: rotateY(2deg) rotateX(0deg) translateY(-5px);
    }
}

@media (max-width: 480px) {
    .img-3d-container {
        height: 250px;
        transform: rotateY(-8deg) rotateX(2deg);
    }
}

/* ========== BOTÕES DO CALENDLY ========== */
.btn, .btn-large, .btn-servico {
    cursor: pointer;
}

/* Garantir que todos os botões de agendamento tenham o mesmo estilo */
.nav-btn, .mobile-cta, .btn-servico, #heroAgendarBtn, #servicosAgendarBtn, #ctaAgendarBtn {
    transition: all 0.3s ease;
}

/* Efeito de clique nos botões */
.btn:active, .btn-large:active, .btn-servico:active {
    transform: translateY(1px);
}

/* Feedback visual quando o Calendly abre */
.calendly-open {
    animation: pulse-calendly 0.5s ease;
}

@keyframes pulse-calendly {
    0% { transform: scale(1); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

/* ========== SERVIÇOS ========== */
.servicos {
    background-color: var(--grafite);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
}

.servico-card {
    background-color: var(--preto);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 162, 77, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-10px);
    border-color: var(--dourado);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.servico-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.servico-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servico-card:hover .servico-img img {
    transform: scale(1.1);
}

.servico-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.servico-icon {
    font-size: 1.8rem;
    color: var(--dourado);
    margin-bottom: 12px;
}

.servico-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--branco);
}

.servico-card p {
    color: var(--cinza);
    margin-bottom: 15px;
    flex: 1;
    font-size: 0.95rem;
}

.servico-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.servico-preco {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dourado);
}

.servico-tempo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--cinza-claro);
    font-weight: 500;
    font-size: 0.9rem;
}

.servico-tempo i {
    color: var(--dourado);
}

.servicos-cta {
    text-align: center;
    width: 100%;
}

/* ========== DEPOIMENTOS ========== */
.depoimentos {
    background-color: var(--preto);
}

.depoimentos-container {
    width: 100%;
}

.depoimentos-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
}

.depoimento-card {
    background-color: var(--grafite);
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    width: 100%;
}

.depoimento-card:hover {
    transform: translateY(-8px);
}

.depoimento-stars {
    color: var(--dourado);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--branco-suave);
    font-size: 1rem;
    line-height: 1.6;
}

.depoimento-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--dourado);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.3rem;
    color: var(--preto);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--branco);
}

.author-info p {
    color: var(--cinza);
    font-size: 0.85rem;
}

/* ========== CARROSSEL SIMPLES E FUNCIONAL ========== */
.galeria {
    background-color: var(--preto);
    padding: 80px 0 50px;
    position: relative;
    width: 100%;
}

.simple-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.carrossel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carrossel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.carrossel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carrossel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    z-index: 3;
}

.slide-caption h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dourado);
}

.slide-caption p {
    font-size: 1.1rem;
    color: var(--branco-suave);
    max-width: 600px;
}

/* Controles do carrossel */
.carrossel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(28, 28, 28, 0.8);
    color: var(--dourado);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carrossel-control:hover {
    background-color: var(--dourado);
    color: var(--preto);
    transform: translateY(-50%) scale(1.1);
}

.carrossel-control.prev {
    left: 20px;
}

.carrossel-control.next {
    right: 20px;
}

/* Indicadores */
.carrossel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--dourado);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: var(--dourado-claro);
}

/* ========== LOCALIZAÇÃO ========== */
.localizacao {
    background-color: var(--preto);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.localizacao-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dourado);
}

.localizacao-detalhes {
    margin-bottom: 30px;
    width: 100%;
}

.detalhe-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    width: 100%;
}

.detalhe-item i {
    color: var(--dourado);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 5px;
    flex: 0 0 auto;
}

.detalhe-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--branco);
}

.detalhe-item p {
    color: var(--cinza-claro);
    line-height: 1.5;
    font-size: 0.95rem;
}

.localizacao-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.whatsapp-btn, .phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.whatsapp-btn {
    background-color: var(--verde-whatsapp);
    color: white;
}

.whatsapp-btn:hover {
    background-color: var(--verde-whatsapp-escuro);
    transform: translateY(-3px);
}

.phone-btn {
    background-color: var(--grafite-claro);
    color: var(--branco);
    border: 1px solid var(--cinza-escuro);
}

.phone-btn:hover {
    background-color: var(--cinza-escuro);
    transform: translateY(-3px);
}

.mapa-container {
    height: 100%;
    width: 100%;
}

.mapa {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--cinza-escuro);
    width: 100%;
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ========== CTA FINAL ========== */
.cta-final {
    background: linear-gradient(rgba(14, 14, 14, 0.9), rgba(14, 14, 14, 0.9)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(201, 162, 77, 0.1), rgba(14, 14, 14, 0.9));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dourado);
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--branco-suave);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cinza-claro);
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-feature i {
    color: var(--dourado);
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--grafite);
    padding: 60px 0 30px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dourado);
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dourado);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--branco);
}

.footer-desc {
    color: var(--cinza);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--preto);
    color: var(--cinza);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.social-link:hover {
    background-color: var(--dourado);
    color: var(--preto);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--cinza);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--dourado);
}

.footer-contato p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--cinza);
    width: 100%;
    font-size: 0.9rem;
}

.footer-contato i {
    color: var(--dourado);
    margin-right: 8px;
    margin-top: 3px;
    flex: 0 0 auto;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--cinza-escuro);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.copyright, .dev-credit {
    color: var(--cinza);
    font-size: 0.85rem;
    margin: 5px 0;
}

.dev-credit i {
    color: #ff4757;
    margin: 0 4px;
}

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: var(--verde-whatsapp);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float a:hover {
    background-color: var(--verde-whatsapp-escuro);
    transform: scale(1.1);
}

/* ========== ANIMAÇÕES ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVIDADE COMPLETA ========== */

/* Tablets grandes e laptops pequenos (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .carrossel-wrapper {
        height: 450px;
    }
    
    .slide-caption {
        padding: 30px;
    }
    
    .slide-caption h3 {
        font-size: 1.8rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Navbar para mobile */
    .nav-center, .nav-right {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    /* Hero section mobile */
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: 500px;
        height: auto;
        padding: 100px 0 80px;
    }
    
    /* Sobre section mobile */
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sobre-text h2 {
        font-size: 1.8rem;
    }
    
    .sobre-text p {
        font-size: 1rem;
    }
    
    .sobre-stats {
        gap: 20px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    /* Serviços mobile */
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .servico-img {
        height: 180px;
    }
    
    /* Depoimentos mobile */
    .depoimentos-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Carrossel mobile */
    .carrossel-wrapper {
        height: 350px;
    }
    
    .carrossel-control {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .carrossel-control.prev {
        left: 15px;
    }
    
    .carrossel-control.next {
        right: 15px;
    }
    
    .slide-caption {
        padding: 20px;
    }
    
    .slide-caption h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .slide-caption p {
        font-size: 0.9rem;
    }
    
    /* Localização mobile */
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .localizacao-info h3 {
        font-size: 1.6rem;
    }
    
    .mapa {
        height: 350px;
    }
    
    .localizacao-cta {
        flex-direction: column;
    }
    
    .whatsapp-btn, .phone-btn {
        width: 100%;
        min-width: 100%;
    }
    
    /* CTA final mobile */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Features em coluna no mobile */
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Celulares (576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    /* Hero ainda menor */
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn, .btn-large {
        width: 100%;
        padding: 12px 25px;
    }
    
    /* Sobre stats em coluna */
    .sobre-stats {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stat {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    /* Carrossel mobile pequeno */
    .carrossel-wrapper {
        height: 300px;
    }
    
    .slide-caption h3 {
        font-size: 1.3rem;
    }
    
    .slide-caption p {
        font-size: 0.85rem;
    }
    
    .carrossel-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carrossel-control.prev {
        left: 10px;
    }
    
    .carrossel-control.next {
        right: 10px;
    }
    
    .carrossel-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    /* Mapa menor */
    .mapa {
        height: 300px;
    }
    
    /* Footer 1 coluna */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contato p {
        justify-content: center;
    }
    
    /* WhatsApp menor */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Celulares muito pequenos (480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .mobile-menu {
        max-width: 85%;
    }
    
    .carrossel-wrapper {
        height: 250px;
    }
    
    .slide-caption {
        padding: 15px;
    }
    
    .slide-caption h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .slide-caption p {
        font-size: 0.8rem;
    }
    
    .sobre-text h2 {
        font-size: 1.6rem;
    }
    
    .stat h3 {
        font-size: 1.6rem;
    }
}

/* Altura pequena */
@media (max-height: 600px) {
    .hero {
        min-height: 100vh;
        padding: 120px 0 60px;
    }
    
    .carrossel-wrapper {
        height: 300px;
    }
}