/* assets/css/style.css */

/* RESET E VARIÁVEIS GLOBAIS */
:root {
    --primary-color: #8D5B4C; /* Um tom terroso, sofisticado e acolhedor */
    --secondary-color: #F4EAE6; /* Um fundo claro, suave e feminino */
    --dark-color: #333333; /* Para textos principais */
    --light-color: #FFFFFF;
    --gray-color: #6c757d;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ESTILOS GERAIS DE SEÇÃO */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-title-light {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.section-description-light {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

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

/* HERO SECTION */
.hero {
    background: url('../images/hero-background.png') no-repeat center center/cover;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-button-light {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.hero-microcopy {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* APRESENTAÇÃO */
.presentation-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.presentation-image {
    flex: 1;
    max-width: 350px;
}

.presentation-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(141, 91, 76, 0.2);
}

.presentation-text {
    flex: 2;
}

.presentation-text p {
    font-size: 1.1rem;
}

/* SERVIÇOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 20px 20px 10px 20px;
}

.service-description-card {
    padding: 0 20px 30px 20px;
    font-size: 0.95rem;
    color: var(--gray-color);
}

/* DEPOIMENTOS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* RODAPÉ */
.footer {
    background-color: #333;
    color: #ccc;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-link {
    color: var(--light-color);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.justify-text {
    text-align: justify;
}

/* ESTILOS PARA PÁGINAS DE CONTEÚDO (EX: POLÍTICA DE PRIVACIDADE) */
.page-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
}

.content-page {
    padding: 80px 0;
}

.content-page.container {
    max-width: 800px; /* Limita a largura para melhor legibilidade */
}

.content-page h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}

.content-page p,.content-page li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.content-page ul {
    list-style-position: inside;
    padding-left: 10px;
}

.content-page a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.content-page a:hover {
    text-decoration: underline;
}

.content-page strong {
    color: var(--dark-color);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .presentation-container {
        flex-direction: column;
        text-align: center;
    }
  .presentation-image {
        margin-bottom: 40px;
    }
  .services-grid,.testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
  .section-title,.section-title-light {
        font-size: 2rem;
    }
  .hero-title {
        font-size: 2.5rem;
    }
  .services-grid,.testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Animação*/
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}