/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.4); /* overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 5.5rem;
    }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 1.75rem;
    }
}

/* Botão */
.hero-content a {
    background-color: #D16F91;
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

.hero-content a:hover {
    background-color: #B15678;
}

.hero-content a i {
    margin-left: 0.5rem;
}

/* ===== Nossos Destaques - CSS Premium ===== */
/* Container e título */
.destaques .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.destaques .titulo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #111;
}

/* Grid de cards */
.destaques .cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .destaques .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .destaques .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Estilo dos cards */
.destaques .card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.destaques .card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover do card */
.destaques .card:hover img {
    transform: scale(1.05);
}

/* Info do card sobre a imagem */
.destaques .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #fff;
}

.destaques .card-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.destaques .card-info p {
    font-size: 0.9rem;
    color: #fbb6ce; /* rosa clarinho */
}


/* Sessão Sobre Nós */
.sobre-nos {
    background-color: #fcfaf5; /* dourado clarinho suave */
    padding-top: 4rem; /* aumento do espaço em cima, antes era py-20 (5rem + 5rem), agora ajustado */
    padding-bottom: 5rem;
}

/* Container centralizado */
.sobre-nos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Estrutura da sessão */
.sobre-nos-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media(min-width: 768px) {
    .sobre-nos-inner {
        flex-direction: row;
        align-items: center;
    }
}

/* Imagem */
.sobre-nos-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Texto */
.sobre-nos-texto {
    max-width: 600px;
}

.sobre-nos-texto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
}

.sobre-nos-texto p {
     font-size: 1rem;
    line-height: 1.8;
    color: #4B5563; /* cinza escuro suave */
    text-align: justify;
}


/* Depoimentos Compactos */
section.bg-rose-50 {
    background-color: #fffefe; /* Fundo dourado bem suave */
    padding: 80px 20px;
}

section.bg-rose-50 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

section.bg-rose-50 .w-24.h-1 {
    background-color: #D16F91; /* Rosa vibrante */
    border-radius: 5px;
    margin: 0 auto;
}

section.bg-rose-50 .grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

section.bg-rose-50 .card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid #D16F91; /* Borda rosa clara */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px; /* altura mais compacta */
}

section.bg-rose-50 .card .stars {
    color: #D16F91;
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

section.bg-rose-50 .card p {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 12px;
}

section.bg-rose-50 .card .cliente-info {
    display: flex;
    align-items: center;
    margin-top: auto;
}

section.bg-rose-50 .card .cliente-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

section.bg-rose-50 .card .cliente-info h4 {
    font-size: 0.95rem;
    color: #111111;
    font-weight: 600;
    margin-bottom: 2px;
}

section.bg-rose-50 .card .cliente-info p {
    font-size: 0.8rem;
    color: #777777;
    margin: 0;
}

/* Responsividade */
@media (min-width: 640px) {
    section.bg-rose-50 .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    section.bg-rose-50 .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    section.bg-rose-50 .card {
        height: auto; /* Deixa automático para telas pequenas */
    }
    section.bg-rose-50 .card p {
        font-size: 0.9rem;
    }
    section.bg-rose-50 .card .cliente-info h4 {
        font-size: 0.9rem;
    }
    section.bg-rose-50 .card .cliente-info p {
        font-size: 0.75rem;
    }
}

/* ================= Depoimentos ================= */
section.py-20.bg-rose-50 {
    background-color: #ffffff; /* suave para não cansar a vista */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

section.py-20.bg-rose-50 .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media(min-width: 640px) {
    section.py-20.bg-rose-50 .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 768px) {
    section.py-20.bg-rose-50 .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
section.py-20.bg-rose-50 .card {
    background: linear-gradient(180deg, #ffffff 0%, #f8f6eb 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.py-20.bg-rose-50 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Estrelas */
section.py-20.bg-rose-50 .stars {
    color: #D16F91; /* rosa premium */
    font-size: 1rem;
}

/* Texto do depoimento */
section.py-20.bg-rose-50 p {
    color: #1f2937; /* quase preto, para destacar */
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Cliente info */
section.py-20.bg-rose-50 .cliente-info {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

section.py-20.bg-rose-50 .cliente-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
    border: 2px solid #D16F91; /* leve contorno rosa */
}

section.py-20.bg-rose-50 .cliente-info h4 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

section.py-20.bg-rose-50 .cliente-info p {
    margin: 0;
    font-size: 0.75rem;
    color: #6b7280;
}

/* Agendamento */

.agendamento-section {
    padding: 80px 20px;
    background-color: #D16F91;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.agendamento-header {
    text-align: center;
    margin-bottom: 40px;
}

.agendamento-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.agendamento-header p {
    color: #ffffff;
    font-size: 1rem;
}

.agendamento-form {
    background-color: #fffefe;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #111827;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #111827;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #D16F91;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2);
}

textarea {
    resize: none;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.checkbox-container a {
    color: #D16F91;
    text-decoration: underline;
}

.agendamento-form button {
    margin-top: 25px;
    background-color: #D16F91;
    color: #fff;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.agendamento-form button:hover {
    background-color: #D16F91;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .agendamento-header h2 {
        font-size: 2rem;
    }

    .agendamento-header p {
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    background-color: #1f1f1f; /* fundo preto escuro */
    color: #f5f5f5; /* cor clara para textos */
    padding: 3rem 1.5rem;
    border-top: 1px solid #4b4b4b;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* mantém espaço igual entre colunas */
    align-items: flex-start; /* todas alinhadas ao topo */
    flex-wrap: wrap; /* colunas empilham no mobile */
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem; /* espaçamento uniforme */
}

.footer-column {
    flex: 1; /* todas ocupam espaço igual */
    min-width: 220px;
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-column p,
.footer-column ul {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #c6f8e1; /* cor roxa */
}

.social-links {
    display: flex;
    justify-content: flex-start; /* no desktop, alinhado à esquerda da coluna */
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-links a i {
    font-size: 1.5rem;
    color: #f8f7f4;
    transition: color 0.3s;
}

.social-links a:hover i {
    color: #c6f8e1;
}

.footer-copy {
    text-align: center;
    color: #777;
    margin-top: 2rem;
    font-size: 0.85rem;
}

/* Ajuste responsivo para telas pequenas */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

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

    .social-links {
        justify-content: center; /* centraliza os ícones no mobile */
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;

    /* ESSENCIAIS */
    text-decoration: none;
    outline: none;
    border: none;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:focus {
    outline: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    color: #fff;
}
