@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ============================================================
   1. VARIÁVEIS E RESET (Cores VIP)
   ============================================================ */
:root {
    --primary: #cd843f;        /* Bege Principal */
    --secondary: #290113;      /* Vinho Escuro */
    --accent: #a46b35;         /* Bege Secundário */
    --accent-hover: #8e5a2b;
    --text-dark: #2C3E50;
    --text-light: #64748B;
    --bg-light: #FFFFFF;       /* Fundo Branco conforme pedido */
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ============================================================
   2. HEADER
   ============================================================ */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #cd843f; /* Bege Obrigatório */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo img {
    display: block;
    height: 50px;
    width: auto;
}

.main-header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-header nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: var(--transition);
}

.main-header nav a:hover::after {
    width: 100%;
}

.btn-contato {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-contato:hover {
    background: var(--white);
    color: var(--primary);
}

/* ============================================================
   3. HERO SECTION
   ============================================================ */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(41, 1, 19, 0.5), rgba(41, 1, 19, 0.5)), 
                url('../img/test1.jpeg') no-repeat center center/cover;
    padding: 0 20px;
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #E2E8F0;
}

.publico-tags {
    margin-bottom: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--accent);
    color: var(--white);
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(164, 107, 53, 0.4);
    animation: pulse 2s infinite;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: var(--accent-hover);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(164, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(164, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(164, 107, 53, 0); }
}

/* ============================================================
   4. ESPECIALIDADES & PLANOS (Acréscimo mantendo o padrão)
   ============================================================ */
.especialidades {
    padding: 100px 8%;
    background-color: var(--white);
    text-align: center;
}

.grid-especialidades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card-esp {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.card-esp:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary);
}

.planos-section {
    padding: 80px 8%;
    background-color: #f9f9f9;
    text-align: center;
}

.logos-planos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.plano-item img {
    height: 105px; /* Mantém o tamanho base */
    transition: transform 0.3s ease; /* Transição suave focada na transformação */
    display: block; 
    margin: 0 auto;
}

.plano-item img:hover {
    /* 1.1 significa 110% do tamanho original. 
       Ajuste para 1.05 se quiser um aumento bem sutil. */
    transform: scale(1.1); 
}

/* ============================================================
   5. SOBRE
   ============================================================ */
.sobre {
    padding: 100px 8%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sobre .texto { flex: 1; margin-right: 40px; text-align: center; }
.sobre .imagem { flex: 1; }

.sobre img {
    width: 90%;
    border-radius: 20px;
    
}

.sobre h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.sobre-img-container {
    width: 100%;
    max-width: 500px; /* Ou o tamanho que já estava sua imagem */
    margin: 0 auto;
}

.sobreSwiper {
    width: 100%;
    border-radius: 20px; /* Mantém o estilo arredondado */
    overflow: hidden;
    position: relative;
}

.sobreSwiper img {
    width: 100%;
    height: 400px; /* Ajuste a altura conforme desejar */
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
    display: block;
}

/* Personalizando as setinhas para a seção sobre */
.sobre-btn {
    color: var(--secondary) !important;
    transform: scale(0.7); /* Deixa as setas um pouco menores e mais elegantes */
}

/* ============================================================
   6. WHATSAPP FLOAT (Voltando ao original com cores novas)
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: all 0.3s ease;
}

.wa-text {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.5s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #20ba5a;
}

.whatsapp-float:hover .wa-text {
    max-width: 200px;
}

/* ============================================================
   6.1. Maps
   ============================================================ */

.mapa-section {
    padding: 60px 8%;
    background-color: #fdfaf8; /* Um fundo bege bem clarinho */
}

.mapa-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Faz o mapa descer no celular */
}

.mapa-texto {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.mapa-texto h2 {
    color: var(--vinho); /* Use a sua variável de cor vinho */
    margin-bottom: 20px;
    font-size: 2rem;
}

.endereco-detalhe p {
    margin-bottom: 5px;
    color: #555;
    line-height: 1.6;
}

.btn-rota {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-rota:hover {
    background-color: var(--accent-hover); /* Bege do site */
    color: var(--white);
}

.mapa-frame {
    flex: 1.5; /* O mapa fica um pouco maior que o texto no PC */
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================================================
   6.2. Depoimentos
   ============================================================ */


.depoimentos-section {
    padding: 80px 8%;
    background-color: #fdfaf8;
    overflow: hidden; /* Evita que o carrossel quebre a largura da página */
}

.swiper {
    width: 100%;
    padding: 50px 0 !important;
}

.card-depoimento {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(41, 1, 19, 0.05);
    border: 1px solid #eee;
    height: 100%; /* Garante que todos tenham o mesmo tamanho */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars { color: #fbbc05; margin-bottom: 15px; font-size: 1.2rem; }


.card-depoimento p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.depoimentos-section h2,p {
    text-align: center;
}

/* Cores dos botões do carrossel para combinar com seu site */
.swiper-button-next, .swiper-button-prev {
    color: var(--secondary) !important; /* Seu Vinho */
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important; /* Seu Bege */
}


/* ============================================================
   7. FOOTER (Estrutura Original - Cores VIP)
   ============================================================ */
.main-footer {
    background-color:  #8e5a2b;
    color: #ffffff;
    padding: 80px 8% 30px 8%;
    font-family: 'Montserrat', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.branding p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 300px;
}

.links ul { list-style: none; }
.links ul li { margin-bottom: 12px; }
.links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.address-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.address-item .icon { color: var(--primary); font-size: 1.2rem; }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* ============================================================
   8. RESPONSIVIDADE
   ============================================================ */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-icon div {
    width: 32px;
    height: 2px;
    background-color: var(--white);
    margin: 8px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-icon { display: block; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: var(--primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in;
    }

    .mapa-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mapa-frame {
        width: 100%;
        height: 300px;
    }

    .hero h1 { font-size: 2.2rem; }

    .nav-menu.active { transform: translateX(0); }
    .nav-menu ul { flex-direction: column; text-align: center; gap: 40px; }
    .nav-menu a { font-size: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-column { display: flex; flex-direction: column; align-items: center; }
    
    .sobre-content { flex-direction: column; text-align: center; }
    .sobre .texto { margin-right: 0; }
    .sobre img { margin-top: 40px; }
}