:root {
    --light-blue: #f0f7ff; --primary-blue: #0077cc; --dark-blue: #004a80;
    --white: #ffffff; --text-dark: #2d3748; --text-light: #718096;
    --star-gold: #fbbc05;
    --gradient-background: linear-gradient(120deg, var(--light-blue), var(--white));
    --gradient-button: linear-gradient(120deg, var(--primary-blue), var(--dark-blue));
    --gradient-button-hover: linear-gradient(120deg, #0088e6, var(--primary-blue));
}

html { scroll-behavior: smooth; }

html, body {
    font-family: 'Lato', sans-serif; margin: 0; background-color: var(--white);
    color: var(--text-dark); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 20px 0; /* Espaçamento vertical reduzido */
    position: fixed; top: 0; z-index: 1000; width: 100%;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* a altura agora é definida pelo conteúdo, sem min-height */
}

/* --- AJUSTES DA LOGO --- */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    position: absolute; /* Tira a imagem do fluxo normal */
    left: 20px;            /* Cola na borda esquerda */
    height: 90px; /* Altura da logo levemente reduzida para um header mais compacto */
    width: auto;
    object-fit: contain;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-links li { margin-left: 20px; }

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap;
    font-size: 1.1em; /* Tamanho da fonte do menu aumentado */
}
.nav-links a:hover { color: var(--primary-blue); }

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.4s ease;
}
.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle { display: none; font-size: 1.8em; background: none; border: none; color: var(--dark-blue); cursor: pointer; }

.btn {
    padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: 700;
    color: var(--white); transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 119, 204, 0.2); border: none;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary { background: var(--gradient-button); }
.btn-primary:hover { background: var(--gradient-button-hover); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 119, 204, 0.4); }

.nav-links .btn {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* O restante do CSS permanece o mesmo */

/* Hero Section (Primeira Seção) */
.hero {
    background-image: linear-gradient(rgba(0, 74, 128, 0.7), rgba(0, 119, 204, 0.6)), url(imagens/Fundo.jpg);
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-text .paragrafo-destaque {
    font-size: 1.2em;           /* Aumenta o tamanho da fonte em 20% em relação ao normal */
    font-style: italic;         /* Deixa o texto em itálico */
    font-family: Georgia, serif; /* Muda a família da fonte para a mesma dos títulos */
    color: var(--light-blue);   /* Exemplo: Mudar a cor para um azul claro, se quiser */
    line-height: 1.6;           /* Ajusta o espaçamento entre as linhas, se necessário */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-text { flex: 1; max-width: 50%; }
.hero-tagline {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: block;
}
.hero h1 {
    font-size: 3em;
    font-weight: 900;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}
.hero-image { flex: 1; max-width: 45%; text-align: center; }

.hero-image img {
    max-width: 100%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 2);
}

.section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.2em; font-weight: 900; color: var(--dark-blue); margin-bottom: 10px; position: relative; }
.section-subtitle { text-align: center; font-size: 1.1em; color: var(--text-light); max-width: 700px; margin: 0 auto 50px auto; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background-color: var(--primary-blue); margin: 15px auto 0 auto; border-radius: 5px; }

#about { background-color: var(--white); }
.about-content { display: flex; align-items: center; gap: 50px; }

.about-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,2);
}

.about-text { flex-grow: 1; max-width: 600px; }
.about-text h3 { font-size: 1.8em; color: var(--primary-blue); font-weight: 700; }
.crp { font-weight: 700; color: var(--text-light); margin-top: -15px; margin-bottom: 20px; }
.about-text p { line-height: 1.7; }

#approach, #tcc, #ambiente { background: var(--gradient-background); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.info-card { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; border-top: 4px solid var(--primary-blue); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.info-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.info-card .icon { font-size: 2.5em; color: var(--primary-blue); margin-bottom: 15px; }
.info-card h4 { font-size: 1.3em; margin-bottom: 10px; color: var(--dark-blue); font-weight: 700; }
.info-card ul { list-style: none; padding: 0; text-align: left; color: var(--text-light); }
.info-card ul li { margin-bottom: 10px; display: flex; align-items: flex-start; }
.info-card ul li .fa-check { color: var(--primary-blue); margin-right: 10px; margin-top: 5px; }

#faq { background-color: var(--white); }
.faq-item { background: var(--white); margin-bottom: 10px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px; font-size: 1.1em; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--dark-blue); }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; padding: 0 20px; line-height: 1.6; }

/* --- ESTILOS PARA OS SLIDERS (AVALIAÇÕES E AMBIENTE) --- */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    color: var(--dark-blue);
    font-size: 1.2em;
    transition: all 0.3s ease;
}
.slider-nav:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider-nav.prev { left: 10px; }
.slider-nav.next { right: 10px; }
.slider-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

#testimonials { background-color: var(--light-blue); }
.testimonial-slider-container {
    max-width: 800px; margin: 0 auto; position: relative; overflow: hidden;
}
.testimonial-wrapper {
    display: flex; transition: transform 0.5s ease-in-out;
}
.testimonial-card {
    background-color: var(--white); border-radius: 8px; padding: 35px; box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; min-width: 100%; box-sizing: border-box;
}
.client-name { font-weight: 700; color: var(--dark-blue); margin-bottom: 5px; }
.star-rating { color: var(--star-gold); margin-bottom: 15px; font-size: 1.1em; }
.testimonial-text {
    font-style: italic; color: var(--text-light); flex-grow: 1; margin: 0 0 15px 0;
    line-height: 1.7; white-space: pre-wrap; transition: max-height 0.5s ease-out;
}
.testimonial-text.truncated {
    max-height: 100px; overflow: hidden; position: relative;
}
.testimonial-text.truncated::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--white));
}
.read-more-btn {
    background: none; border: none; color: var(--primary-blue);
    font-weight: 700; cursor: pointer; padding: 0; margin-top: 10px; align-self: flex-start;
}
.google-verified a { font-size: 0.9em; color: var(--text-light); text-decoration: none; margin-top: auto; }
.google-verified a:hover { text-decoration: underline; }
.google-verified i { color: #DB4437; margin-right: 5px; }

/* --- SLIDER DE AMBIENTE --- */
.ambiente-slider-container {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.ambiente-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
}
.ambiente-card {
    min-width: 100%;
    box-sizing: border-box;
    line-height: 0;
}
.ambiente-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

#contact { background-color: var(--white); }
.contact-content { text-align: center; }
.social-links { margin: 30px 0; }
.social-links a { font-size: 2.5em; color: var(--primary-blue); margin: 0 20px; transition: color 0.3s ease; }
.social-links a:hover { color: var(--dark-blue); }

.footer { background: var(--dark-blue); color: var(--white); padding: 40px 0; text-align: center; }
.footer p { margin: 5px 0; color: rgba(255,255,255,0.8); }
.footer a { color: var(--white); text-decoration: none; font-weight: 700; }
.footer a:hover { text-decoration: underline; }

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background-color: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2em; text-decoration: none; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 100; transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }

.fade-in-section { opacity: 0; transition: opacity 1.2s ease-out, transform 1.2s ease-out; }
main > .fade-in-section:nth-of-type(odd) { transform: translateX(-100px); }
main > .fade-in-section:nth-of-type(even) { transform: translateX(100px); }
main > .fade-in-section:first-of-type { transform: translateY(-100px); }
main > .fade-in-section:last-of-type { transform: translateY(100px); }
main > .fade-in-section.is-visible { opacity: 1; transform: translate(0, 0); }

@media (max-width: 992px) {
    .nav-links li { margin-left: 12px; }
    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-text, .hero-image { max-width: 100%; }
    .hero-image { margin-bottom: 30px; }
    .hero h1 { font-size: 2.5em; }
    .about-content { flex-direction: column; text-align: center; }
    .about-image { margin-bottom: 30px; }
    .section { padding: 60px 0; }
    .hero-image img { width: 350px; height: 350px; }
}

@media (max-width: 768px) {
    .logo-text { display: none; }
    .logo-img { height: 60px; }
    .logo { gap: 0; }
    .header { padding: 10px 0; }

    .menu-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 80px; left: 0; width: 100%;
        background-color: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        flex-direction: column; align-items: center; padding: 20px 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; }
    .nav-links .btn { margin-top: 10px; }
    .nav-links a::after { display: none; }

    .hero h1 { font-size: 2.2em; }
    .hero p { font-size: 1em; }
    .hero-image img { width: 280px; height: 280px; }
    .section-title { font-size: 1.8em; }
    .section-subtitle { font-size: 1em; }
    .about-image img { width: 280px; height: 280px; }
    .social-links a { font-size: 2em; margin: 0 15px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.5em; bottom: 20px; right: 20px; }

    .testimonial-slider-container { padding: 0; }
    .ambiente-slider-container { max-width: calc(100% - 20px); }
    .slider-nav.prev { left: 5px; }
    .slider-nav.next { right: 5px; }
    .slider-nav { width: 35px; height: 35px; font-size: 1em; }
}