/* ==========================================================================
   VARIÁVEIS DO TEMA (Mude aqui e altere o design de todo o site)
   ========================================================================== */
:root {
    /* Identidade da Marca: Tons elegantes voltados para estética e nail design */
    --cor-principal: #ff4a7d;       /* Rosa choque / Destaque principal */
    --cor-secundaria: #c2185b;      /* Tom mais escuro para efeitos de passar o mouse */
    --cor-escura: #27272a;          /* Cor cinza-escura para títulos e textos fortes */
    --cor-clara: #fafafa;           /* Fundo neutro e limpo para seções alternadas */
    --cor-branca: #ffffff;
    --fonte-base: system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   RESET PADRÃO (Garante comportamento idêntico em qualquer navegador)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Rolagem suave ao clicar nos links do menu */
    font-family: var(--fonte-base);
    color: #52525b;
    line-height: 1.6;
}

/* ==========================================================================
   ESTRUTURAS GERAIS E CONTAINER
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Remove a linha azul e mantém a cor do texto nos cards clicáveis do WhatsApp */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ==========================================================================
   COMPONENTES DE BOTÃO (CTA)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--cor-principal);
    color: var(--cor-branca);
}

.btn-primary:hover {
    background-color: var(--cor-secundaria);
    transform: translateY(-2px);
}

/* ==========================================================================
   MENU SUPERIOR / HEADER
   ========================================================================== */
.site-header {
    background-color: var(--cor-branca);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 3.1rem;
    font-weight: 700;
    color: var(--cor-escura);
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', Times, serif;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    color: #71717a;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--cor-principal);
}

/* ==========================================================================
   SEÇÃO HERO (ABERTURA DO SITE)
   ========================================================================== */
.hero-section {
    padding: 80px 0;
    background-color: #f3d0dd; /* Fundo rosa bem suave combinando com a marca */

}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text, .hero-image {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: var(--cor-escura);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: var(--cor-principal);
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}
.hero-image {
    width: 100%;
    max-width: 300px; /* Largura máxima do vídeo no layout */
    border-radius: 12px; /* Borda arredondada (opcional) */
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Garante que o vídeo preencha o espaço sem distorcer */

}
/* ==========================================================================
   SEÇÃO DE SERVIÇOS
   ========================================================================== */
.services-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    color: var(--cor-escura);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--cor-branca);
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 4px solid #f1c3ea;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%; /* Garante que todos os cards fiquem do mesmo tamanho */
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(255, 74, 125, 0.1);
    border-color: var(--cor-principal);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--cor-principal);
    margin-bottom: 16px;
}

.service-card h3 {
    color: var(--cor-escura);
    margin-bottom: 12px;
}

/* ==========================================================================
   SEÇÃO QUEM SOMOS
   ========================================================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--cor-clara);
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text, .about-image {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--cor-escura);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
}

/* ==========================================================================
   SEÇÃO DE CONTATO E MAPA
   ========================================================================== */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-info, .contact-map {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--cor-escura);
    margin-bottom: 20px;
}

.address-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info i {
    color: var(--cor-principal);
    margin-right: 8px;
    width: 20px;
}

.contact-map iframe {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.site-footer {
    background-color: var(--cor-escura);
    color: #a1a1aa;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* ==========================================================================
   BOTÕES FLUTUANTES (WhatsApp e Instagram)
   ========================================================================== */

/* 1. CONFIGURAÇÃO GERAL (Aplicada a ambos os botões) */
.whatsapp-float, 
.instagram-float {
    position: fixed;
    right: 25px; /* Distância da lateral direita */
    width: 60px; /* Largura idêntica para os dois */
    height: 60px; /* Altura idêntica para os dois */
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.2s ease;
    
    /* Configurações para as imagens funcionarem perfeitamente */
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    
    /* Centraliza os ícones do FontAwesome caso a imagem falhe */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* 2. EFEITO HOVER (Aumentar ao passar o mouse) */
.whatsapp-float:hover, 
.instagram-float:hover {
    transform: scale(1.1);
}

/* 3. ESPECÍFICO DO WHATSAPP */
.whatsapp-float {
    bottom: 25px; /* Distância do fundo da página */
    background-image: url("imagens/whatsapp.png");
    background-color: #25d366; /* Cor de fallback caso a imagem não carregue */
    font-size: 32px; /* Tamanho do ícone interno, se houver */
}

/* 4. ESPECÍFICO DO INSTAGRAM */
.instagram-float {
    bottom: 100px; /* Fica acima do whats (25px de margem + 60px do botão + 15px de respiro) */
    background-image: url("imagens/instagram.png");
    background-color: #e1306c; /* Cor de fallback caso a imagem não carregue */
    font-size: 30px; /* Tamanho do ícone interno, se houver */
}

/* ==========================================================================
   RESPONSIVIDADE (Celulares e Telas Pequenas)
   ========================================================================== */
@media (max-width: 768px) {
    .header-wrapper, .hero-wrapper, .about-wrapper, .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .main-nav, .menu-cta {
        display: none; /* Esconde o menu e botão superior no mobile para melhor usabilidade */
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image, .about-image {
        order: -1; /* Joga as fotos para cima dos textos quando visualizado no celular */
        margin-bottom: 24px;
    }
}
