/* ===================================
   LP Domo Atelier - São José
   Journey-Based Copy - Mobile-First
   =================================== */

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #8B7355;
    --primary-dark: #5D4E37;
    --secondary: #C9A227;
    --accent: #E5C158;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --text-dark: #1A1610;
    --text-medium: #3D3428;
    --text-light: #FDF8F3;
    --bg-cream: #FFFDF8;
    --bg-warm: #F8F0E4;
    --bg-gold: #FFF9E6;
    --success: #25D366;
    --shadow: rgba(26, 22, 16, 0.12);
    --shadow-gold: rgba(212, 175, 55, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    background-color: var(--bg-cream);
}

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

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

/* ===================================
   HERO - GATILHO: URGÊNCIA + ESCASSEZ
   =================================== */
.urgency-banner {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-banner strong {
    color: #F4D03F;
}

.urgency-icon {
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hero {
    padding-top: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2C2416 0%, #4A3C2A 40%, #1A1610 100%);
    background-size: cover;
    text-align: center;
    padding: 60px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-logo {
    width: 280px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 15px;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    opacity: 0.95;
    -webkit-backface-visibility: hidden;
    /* Fix for Safari rendering glitch */
    backface-visibility: hidden;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    color: var(--gold);
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    margin-top: 45px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--shadow-gold);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* ===================================
   POR QUE SÃO JOSÉ? - IDENTIDADE
   =================================== */
.why-saint {
    padding: 80px 20px;
    background: var(--bg-cream);
}

.why-saint .section-title {
    font-size: 1.8rem;
    margin-bottom: 45px;
    color: var(--text-dark);
}

.why-grid {
    display: grid;
    gap: 20px;
}

.why-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.why-card strong {
    color: var(--text-dark);
}

/* ===================================
   O SONHO DO LAR COMO IGREJA
   =================================== */
.dream-lar {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2C2416 100%);
    color: var(--text-light);
}

.dream-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.dream-lar .section-title {
    font-size: 1.9rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.dream-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 20px;
    font-style: italic;
}

.dream-quote {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 35px;
}

.dream-cta {
    background: rgba(212, 175, 55, 0.15);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dream-cta p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.dream-cta strong {
    color: var(--gold-light);
}

/* ===================================
   BELEZA QUE LEVA À ORAÇÃO
   =================================== */
.beauty-section {
    padding: 80px 20px;
    background: var(--bg-cream);
}

.beauty-intro {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-medium);
    max-width: 600px;
    margin: 10px auto 45px;
    padding: 0 20px;
}

.beauty-grid {
    display: grid;
    gap: 20px;
}

.beauty-card {
    background: white;
    padding: 28px 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s ease;
}

.beauty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.beauty-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.beauty-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.beauty-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.beauty-card strong {
    color: var(--text-dark);
}

/* ===================================
   PRESENTEAR COM SENTIDO
   =================================== */
.present-section {
    padding: 80px 20px;
    background: var(--bg-gold);
}

.present-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.present-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 35px;
}

.present-card {
    background: white;
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow);
}

.present-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.present-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.present-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.present-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
}

.present-cta strong {
    color: var(--gold-light);
}

/* ===================================
   FAQ / OBJEÇÕES
   =================================== */
.faq-section {
    padding: 80px 20px;
    background: var(--bg-cream);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 12px var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 20px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    color: var(--text-dark);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.08);
}

.faq-question span:first-child {
    font-size: 1.3rem;
}

.toggle-icon {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 20px 25px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.faq-answer strong {
    color: var(--text-dark);
}

.faq-answer .urgency-alert {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.15) 0%, rgba(231, 76, 60, 0.1) 100%);
    border-left: 4px solid #C0392B;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin: 15px 0;
}

.faq-answer li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* ===================================
   CATÁLOGO
   =================================== */
.scarcity-banner {
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.scarcity-banner strong {
    color: #F4D03F;
}

.catalogo-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.catalogo-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #C0392B;
    font-weight: 700;
    margin-top: -30px;
    margin-bottom: 40px;
}

.produtos-grid {
    display: grid;
    gap: 25px;
}

.produto-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px var(--shadow);
}

.produto-image {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.placeholder-image {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
}

.placeholder-image.gold {
    background: linear-gradient(135deg, #FFF9E6 0%, #F5E6C8 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.placeholder-image.wood {
    background: linear-gradient(135deg, #E8DCC8 0%, #C4A77D 100%);
    border: 2px solid rgba(139, 90, 43, 0.2);
}

.placeholder-image.natural {
    background: linear-gradient(135deg, #F5EFE6 0%, #E8DDD0 100%);
    border: 2px solid rgba(180, 150, 120, 0.2);
}

.placeholder-image.stone {
    background: linear-gradient(135deg, #E0D8CC 0%, #C8BEB0 100%);
    border: 2px solid rgba(120, 110, 100, 0.2);
}

.produto-title {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.produto-details {
    display: block;
    font-size: 0.85rem;
    color: var(--text-medium);
    opacity: 0.8;
}

.produto-info {
    padding: 22px;
}

.produto-info h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    text-align: center;
}

.produto-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.produto-info li {
    font-size: 0.9rem;
    padding: 6px 0;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.produto-info li:last-child {
    border-bottom: none;
}

.whatsapp-button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--success);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #20BD5A;
    transform: scale(1.02);
}

/* ===================================
   URGÊNCIA / CTA FINAL
   =================================== */
.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #C0392B 0%, #1A1610 100%);
    text-align: center;
}

.urgency-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.urgency-badge {
    display: inline-block;
    background: #F4D03F;
    color: #1A1610;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.urgency-box h2 {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.urgency-box>p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.urgency-note {
    font-style: italic;
    opacity: 0.85;
    margin-bottom: 30px;
    color: var(--gold-light) !important;
    font-size: 1rem !important;
}

.urgency-small {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.whatsapp-button-large {
    display: inline-block;
    padding: 18px 35px;
    background: var(--success);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-button-large:hover {
    transform: scale(1.05);
    background: #20BD5A;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 20px 30px;
    background: #0D0A07;
    color: var(--text-light);
}

.footer-content {
    display: grid;
    gap: 35px;
    margin-bottom: 35px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer-brand p {
    font-style: italic;
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer-info {
    font-size: 0.9rem;
}

.footer-info p {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-contacts p {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===================================
   WHATSAPP FLOAT - PREMIUM & OFFICIAL
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-label {
    background: white;
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-icon-circle {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: transform 0.3s ease;
}

.whatsapp-icon-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover .whatsapp-icon-circle {
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Mobile Adjustments for Float */
@media (max-width: 480px) {
    .whatsapp-label {
        display: none;
        /* Hide label on mobile but keep icon big */
    }

    .hero-logo {
        width: 180px !important;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 600px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .why-grid,
    .beauty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .present-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 900px) {
    .hero {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem !important;
    }

    .why-grid,
    .beauty-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .present-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1.5fr 1fr;
        max-width: 900px;
        margin: 0 auto 35px;
    }
}

/* ===================================
   ANIMAÇÕES
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.why-card,
.beauty-card,
.present-card,
.produto-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   UTILIDADES
   =================================== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}