:root {
    --primary-color: #064e3b; /* Verde Escuro */
    --secondary-color: #10b981; 
    --accent-color: #ffd700; /* Dourado */
    --text-dark: #2c3e50;
    --bg-light: #f8f9fa;
    --bg-custom: #ecfdf5; 
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    padding-top: 80px; margin: 0; background-color: #fff; line-height: 1.6;
}

h1, h2, h3, h4, .navbar-brand { font-family: 'Playfair Display', serif; }
.text-primary-custom { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-light-custom { background-color: var(--bg-custom); }

/* NAVBAR */
.navbar {
    background-color: var(--primary-color);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,215,0, 0.2);
}
.navbar-brand { font-weight: 700; color: var(--accent-color) !important; font-size: 1.4rem; display: flex; align-items: center; }
.nav-link { 
    color: rgba(255,255,255,0.9) !important; 
    font-weight: 500; margin: 0 8px; cursor: pointer; 
    font-size: 0.95rem; display: flex; align-items: center; gap: 6px; 
}
.nav-link:hover, .nav-link.active-tab { color: var(--accent-color) !important; }

.btn-auth {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600; padding: 8px 20px;
    transition: 0.3s;
}
.btn-auth:hover { background-color: var(--accent-color); color: var(--primary-color); }

/* GOOGLE TRANSLATE FIXED */
.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 0 !important;
    cursor: pointer; display: inline-flex; align-items: center;
}
.goog-te-gadget-simple img, .goog-te-gadget-icon, .goog-te-menu-value span { display: none !important; }
.goog-te-gadget-simple::before {
    content: '\f0ac'; /* Globo */
    font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 1.1rem;
    color: rgba(255,255,255,0.9); margin-right: 5px;
}
.goog-te-gadget-simple::after {
    content: 'Idioma';
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-left: 2px;
}
.goog-te-banner-frame { display: none !important; }
body { top: 0px !important; }

/* CARDS */
.booking-card {
    border: 1px solid #eee; border-radius: 16px; overflow: hidden;
    transition: all 0.3s ease; background: white; cursor: pointer;
}
.booking-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: transparent; }
.booking-img-wrapper { height: 220px; position: relative; overflow: hidden; }
.booking-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.booking-card:hover img { transform: scale(1.05); }
.booking-price {
    position: absolute; bottom: 15px; right: 15px;
    background: rgba(255,255,255,0.95); color: var(--primary-color);
    padding: 6px 16px; border-radius: 30px; font-weight: 700; font-size: 0.9rem;
}

/* CARROSSEL CARDS */
.carousel-card {
    background: white; border-radius: 16px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin: 10px auto; max-width: 400px;
}
.carousel-card img { width: 100%; height: 280px; object-fit: cover; }
.carousel-card-body { padding: 25px; text-align: center; }

/* UTILS */
.btn-custom {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 14px 36px; border-radius: 50px; font-weight: 700; border: none;
    transition: all 0.3s;
}
.btn-custom:hover { transform: translateY(-2px); background-color: #ffed4a; }

.testimonial-card { background: white; padding: 30px; border-radius: 16px; height: 100%; text-align: center; border: 1px solid #f0f0f0; }
.comment-item, .message-item { background: white; padding: 15px; border-radius: 12px; border-left: 4px solid var(--primary-color); margin-bottom: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.auth-card { background: white; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); overflow: hidden; }
.active-auth { background-color: var(--primary-color); color: white; border-color: var(--primary-color); }
.check-item { cursor: pointer; transition: 0.2s; }
.check-item:hover { background-color: #f8f9fa; }
.check-item.checked { text-decoration: line-through; color: #999; background-color: #e9ecef; }

.section-padding { padding: 100px 0; }
.view-section { display: none; animation: fadeIn 0.4s ease-out; }
.view-section.active-view { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.hero-section {
    height: calc(100vh - 80px);
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat fixed;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 1; }
.quiz-opt { width: 100%; padding: 10px; margin-bottom: 10px; border: 2px solid #eee; background: white; border-radius: 8px; transition: 0.2s; text-align: left; }
.quiz-opt:hover, .quiz-opt.active { border-color: var(--primary-color); background: var(--bg-light); }

/* Fix Z-Index para Navbar e Modal */
.navbar { z-index: 1030; }
.modal { z-index: 1055; }
.modal-backdrop { z-index: 1050; }

/* Melhoria visual Quiz */
.step { display: none; opacity: 0; transition: opacity 0.3s; }
.step.active { display: block; opacity: 1; }

.bg-primary-custom { 
    background-color: var(--primary-color) !important; 
}

/* Garante que o texto dentro de fundos primary seja branco */
.bg-primary-custom h3, 
.bg-primary-custom p, 
.bg-primary-custom i {
    color: #ffffff !important;
}

/* CORREÇÃO DAS SETAS DO CARROSSEL */
.carousel-control-prev, .carousel-control-next {
    width: 5%; /* Reduz a área de clique para não atrapalhar */
    opacity: 1; /* Garante que estão sempre visíveis */
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary-color); /* Fundo Verde Escuro */
    border-radius: 50%; /* Redondo */
    padding: 25px; /* Tamanho do fundo */
    background-size: 50%; /* Tamanho da seta dentro do círculo */
    border: 2px solid var(--accent-color); /* Borda Dourada para destaque */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Sombra para levantar do fundo */
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
    background-color: var(--accent-color); /* Fica dourado ao passar o rato */
    transform: scale(1.1); /* Aumenta ligeiramente */
}

/* Garante que o mapa ocupa a altura total da coluna */
.map-container {
    height: 100%;
    min-height: 400px; /* Altura mínima para mobile */
    position: relative;
}

/* ==========================================
   ESTILOS DOS NOVOS CARTÕES (QUEM SOU)
   ========================================== */
.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-color); /* Verde Escuro do tema */
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card:hover i {
    color: var(--accent-color); /* Dourado ao passar o rato */
}

.service-card h6 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}