/* ==================== VARIÁVEIS CSS ==================== */
:root {
    /* Cores - MODULAR E IMPACTANTE PARA VENDAS */
    --cor-primaria: #FF6B35;      /* Laranja vibrante para ação */
    --cor-secundaria: #1a1a1a;    /* Cinza escuro */
    --cor-terciaria: #f8f9fa;     /* Cinza claro */
    --cor-texto: #333;            /* Texto escuro */
    --cor-texto-claro: #666;      /* Texto médio */
    --cor-borda: #e0e0e0;         /* Borda leve */
    --cor-sucesso: #28a745;       /* Verde para sucesso */
    --cor-destaque: #ffc107;      /* Amarelo para destaque */
    
    /* Espaçamento - MODULAR */
    --espacamento-pequeno: 15px;
    --espacamento-medio: 30px;
    --espacamento-grande: 60px;
    
    /* Fontes */
    --fonte-principal: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --fonte-tamanho-base: 16px;
    --fonte-tamanho-titulo: 36px;
    --fonte-tamanho-subtitulo: 20px;
    
    /* Sombras e efeitos */
    --sombra-leve: 0 2px 10px rgba(0, 0, 0, 0.1);
    --sombra-media: 0 4px 20px rgba(0, 0, 0, 0.15);
    --sombra-forte: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ==================== RESET E ESTILOS GERAIS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-principal);
    color: var(--cor-texto);
    line-height: 1.6;
    background-color: #fff;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--espacamento-medio);
}

/* ==================== HEADER E NAVBAR ==================== */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--sombra-media);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: var(--sombra-forte);
}

.navbar {
    padding: var(--espacamento-pequeno) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--espacamento-medio);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    color: var(--cor-primaria);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo h1:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--cor-texto);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--cor-primaria);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--cor-primaria);
    transition: width 0.3s ease;
}

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

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%),
                url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 120px var(--espacamento-medio);
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInUp 1s ease-out;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

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

.hero-title {
    font-size: var(--fonte-tamanho-titulo);
    margin-bottom: var(--espacamento-pequeno);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px var(--cor-destaque); }
}

.hero-subtitle {
    font-size: var(--fonte-tamanho-subtitulo);
    margin-bottom: var(--espacamento-grande);
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==================== BOTÕES ==================== */
.btn {
    padding: 15px 45px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sombra-leve);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cor-primaria), #ff5722);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5722, var(--cor-primaria));
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--sombra-media);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 20px;
    padding: 18px 55px;
    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 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--sombra-forte);
    animation: none;
}

/* ==================== SEÇÕES GERAIS ==================== */
section {
    padding: var(--espacamento-grande) var(--espacamento-medio);
    animation: fadeInUp 1s ease-out both;
    animation-delay: 0.2s;
}

.section-title {
    font-size: var(--fonte-tamanho-titulo);
    text-align: center;
    margin-bottom: var(--espacamento-grande);
    color: var(--cor-secundaria);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-destaque));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 24px;
    text-align: center;
    margin-bottom: var(--espacamento-medio);
    color: white;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--cor-destaque);
    border-radius: 1px;
}

.section-description {
    text-align: center;
    color: var(--cor-texto-claro);
    font-size: 20px;
    margin-bottom: var(--espacamento-grande);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SOBRE SECTION ==================== */
.sobre {
    background-color: var(--cor-terciaria);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--espacamento-medio);
}

.feature-card {
    background-color: white;
    padding: var(--espacamento-grande);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--sombra-leve);
    transition: all 0.3s ease;
    border: 1px solid var(--cor-borda);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--sombra-forte);
    border-color: var(--cor-primaria);
}

.feature-card i {
    font-size: 50px;
    color: var(--cor-primaria);
    margin-bottom: var(--espacamento-pequeno);
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--cor-secundaria);
    font-size: 22px;
}

.feature-card p {
    color: var(--cor-texto-claro);
    font-size: 16px;
}

/* ==================== SERVIÇOS ==================== */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--espacamento-medio);
    margin-top: var(--espacamento-grande);
}

.service-card {
    background-color: white;
    padding: var(--espacamento-medio);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--sombra-leve);
    transition: all 0.3s ease;
    border: 1px solid var(--cor-borda);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
    border-color: var(--cor-primaria);
}

.service-card i {
    font-size: 40px;
    color: var(--cor-primaria);
    margin-bottom: var(--espacamento-pequeno);
}

.service-card h4 {
    margin-bottom: 8px;
    color: var(--cor-secundaria);
    font-size: 18px;
}

.service-card p {
    color: var(--cor-texto-claro);
    font-size: 14px;
}

/* ==================== HORÁRIO DE FUNCIONAMENTO ==================== */
.horario {
    background-color: white;
}

.horario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--espacamento-medio);
    max-width: 800px;
    margin: 0 auto;
}

.horario-item {
    background: linear-gradient(135deg, var(--cor-terciaria), white);
    padding: var(--espacamento-medio);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--sombra-leve);
    transition: all 0.3s ease;
    border: 1px solid var(--cor-borda);
}

.horario-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-media);
    background: linear-gradient(135deg, white, var(--cor-terciaria));
}

.horario-item h4 {
    color: var(--cor-secundaria);
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

.horario-item p {
    color: var(--cor-texto-claro);
    font-size: 14px;
    margin: 0;
}

/* ==================== LOCALIZAÇÃO ==================== */
.localizacao {
    background-color: var(--cor-terciaria);
}

.mapa-container {
    margin-bottom: var(--espacamento-grande);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--sombra-media);
    transition: transform 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.mapa-container:hover {
    transform: scale(1.02);
}

.endereco-info {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--espacamento-medio);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--sombra-leve);
    margin-top: var(--espacamento-medio);
}

.endereco-info h4 {
    color: white;
    margin-bottom: var(--espacamento-pequeno);
    font-size: 20px;
}

.endereco-info p {
    color: #ddd;
    margin: 8px 0;
    font-size: 16px;
    transition: color 0.3s ease;
}

.endereco-info p:hover {
    color: var(--cor-destaque);
}

.endereco-info i {
    color: var(--cor-primaria);
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.endereco-info p:hover i {
    transform: scale(1.2);
}

/* ==================== CONTACTO SECTION ==================== */
.contacto {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #333 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contacto .section-title {
    color: white;
}

.contacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.contacto-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--espacamento-medio);
    position: relative;
    z-index: 1;
}

.contacto-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--espacamento-grande);
    align-items: start;
}

.contact-info {
    text-align: center;
    padding: var(--espacamento-medio);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.contact-info h3 {
    color: white;
    margin-bottom: var(--espacamento-medio);
    font-size: 24px;
}

.location-info h3 {
    color: white;
    margin-bottom: var(--espacamento-medio);
    font-size: 24px;
    text-align: center;
}

.location-info {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.localizacao-content {
    margin-top: var(--espacamento-grande);
    text-align: center;
}

.telefone-info {
    font-size: 20px;
    color: #ddd;
    font-weight: 500;
    margin-top: var(--espacamento-medio);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--cor-secundaria), #000);
    color: white;
    text-align: center;
    padding: var(--espacamento-grande) 0;
    position: relative;
}

.footer .container {
    text-align: center;
}

.redes-sociais {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: var(--espacamento-medio);
}

.social-link {
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--cor-primaria);
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 107, 53, 0.2);
}

/* ==================== BOTÃO WHATSAPP FLUTUANTE ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 35px;
    cursor: pointer;
    box-shadow: var(--sombra-forte);
    transition: all 0.3s ease;
    z-index: 50;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .hero {
        background-attachment: scroll;
        padding: 80px var(--espacamento-pequeno);
        min-height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .mapa-container iframe {
        height: 250px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .horario-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--espacamento-pequeno);
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 50px var(--espacamento-pequeno);
        min-height: 350px;
    }

    .hero-title {
        font-size: 20px;
    }

    .btn {
        padding: 10px 30px;
        font-size: 14px;
    }

    .horario-grid {
        grid-template-columns: 1fr;
    }
}
