/*
Theme Name: Cau Moda Modesta
Theme URI: https://chat.whatsapp.com/CvlIzFsD1mbJcMXG7AN46t
Description: Landing page de alta conversão para loja de moda modesta, focada em captura para WhatsApp.
Author: Copywriter Sênior & Especialista CRO
Version: 1.0
Text Domain: cau-moda-modesta
*/

:root {
    --color-primary: #000000; /* Preto Puro */
    --color-secondary: #333333; /* Cinza Escuro */
    --color-bg: #FFFFFF; /* Branco Puro */
    --color-text: #000000; /* Preto */
    --color-text-light: #666666; /* Cinza para textos secundários */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-weight: 400;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: 'Elegância';
    position: absolute;
    top: 10%;
    left: 5%;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 8rem;
    opacity: 0.03;
    z-index: -1;
    white-space: nowrap;
}

.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 2rem;
    max-width: 900px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 3rem;
    color: var(--color-text-light);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1rem;
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.scarcity-badge {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #000000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.scarcity-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: #F9F9F9;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.benefit-card {
    padding: 2.5rem;
    background-color: white;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: white;
}

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

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #000000;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--color-text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--color-primary);
    color: white;
}

.footer-logo {
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero::before { display: none; }
    .benefits-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}
