/* 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: #217381;
    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: #4499a8;
}

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


/* Sessão Sobre Nós */
.sobre-nos {
    background-color: #ffffff; /* 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: #217381; /* 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 #217381; /* Borda rosa clara */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px; /* altura mais compacta */
}

section.bg-rose-50 .card .stars {
    color: #217381;
    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: #217381; /* 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 #217381; /* 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: #217381;
    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: #217381;
    box-shadow: 0 0 0 2px rgba(51, 161, 180, 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: #217381;
    text-decoration: underline;
}

.agendamento-form button {
    margin-top: 25px;
    background-color: #217381;
    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: #4499a8;
}

/* 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;
}

/* Featured Products - Destaque da Coleção */
#produtos {
    background-color: #f3f4f6; /* cinza clarinho */
    padding: 4rem 2rem;
}

/* Título e subtítulo */
#produtos .text-center h2 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

#produtos .text-center p {
    color: #4b5563;
    font-size: 1rem;
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
}
#produtos .max-w-6xl {
    max-width: 1200px; /* largura máxima mais estreita */
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}
/* Grid de produtos */
#produtos .grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem; /* espaço entre os cards */
    flex-wrap: wrap; /* permite quebrar para tablet/celular */
    margin-top: 3rem;
}

/* Cada card */
#produtos .grid > div {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 1.33rem); /* 3 colunas com gap */
    display: flex;
    flex-direction: column;
    min-width: 280px; /* garante que não fique muito pequeno */
}

#produtos .grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Imagem do card */
#produtos .grid img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

/* Conteúdo do card */
#produtos .grid h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

#produtos .grid p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Preço e botão */
#produtos .grid .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#produtos .grid .flex span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #217381; /* laranja */
}

#produtos .grid .flex button {
    background-color: #217381;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#produtos .grid .flex button:hover {
    background-color: #217381;
    transform: scale(1.05);
}

/* Botão Ver Catálogo */
#produtos .text-center a {
    border: 2px solid #217381;
    color: #217381;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 2rem;
}

#produtos .text-center a:hover {
    background-color: #217381;
    color: #fff;
}

/* Responsivo */
@media (max-width: 1024px) {
    #produtos .grid > div {
        flex: 1 1 calc(50% - 1rem); /* 2 colunas no tablet */
    }
}

@media (max-width: 640px) {
    #produtos .grid {
        gap: 1.5rem;
    }
    #produtos .grid > div {
        flex: 1 1 100%; /* 1 coluna no celular */
    }
}

/* Sessão de Produtos */
#produtos {
    background-color: #f5f5f5; /* cinza bem clarinho */
    padding: 4rem 1rem;
    font-family: 'Arial', sans-serif;
}

#produtos h2 {
    font-family: 'Georgia', serif;
    font-size: 2.25rem; /* 36px */
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 1rem;
}

#produtos p {
    color: #555555;
    font-size: 1rem;
}

/* Grid dos produtos */
#produtos .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    #produtos .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Cards */
#produtos .grid > div {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

#produtos .grid > div:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Imagem */
#produtos img {
    width: 100%;
    height: 16rem; /* 256px */
    object-fit: cover;
}

/* Conteúdo do card */
#produtos .p-6 {
    padding: 1rem; /* espaçamento interno de um dedo */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Nome do produto */
#produtos h3 {
    color: #1f1f1f;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Descrição */
#produtos .p-6 p {
    flex-grow: 1;
    color: #555555;
    margin-bottom: 1rem;
}

/* Preço e botão */
#produtos .p-6 .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#produtos .p-6 span {
    color: #217381; /* laranja */
    font-weight: bold;
    font-size: 1.5rem;
}

#produtos .p-6 button {
    background-color: #217381; /* laranja */
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#produtos .p-6 button:hover {
    background-color: #217381; /* laranja mais escuro no hover */
}

/* Botão do catálogo */
#produtos a.inline-block {
    border: 2px solid #217381;
    color: #217381;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#produtos a.inline-block:hover {
    background-color: #217381;
    color: #ffffff;
}

/* Container principal da sessão */
#produtos > .max-w-6xl {
    text-align: center !important; /* centraliza títulos, subtítulo e botão */
}

/* Título e subtítulo */
#produtos h2,
#produtos p {
    display: block; /* força cada um em sua própria linha */
    margin-left: auto;
    margin-right: auto;
}

/* Botão do catálogo */
#produtos .mt-12 a {
    display: inline-block; /* botão do tamanho do conteúdo */
    margin: 2rem auto 0 auto; /* margem superior para afastar do grid de produtos */
}

/* Força o texto da CTA a ficar branco e centralizado */
section.bg-amber-600 {
    background-color: #217381 !important; /* laranja principal */
    color: #ffffff !important; /* força texto branco */
    padding: 5rem 1rem;
    text-align: center !important; /* força centralização */
}

