/* Templo Mãe Viviane de Oxum */

:root {
    --primary-color: #4A1A6B;
    --secondary-color: #D4AF37;
    --accent-color: #7B2CBF;
    --dark-color: #12081C;
    --light-color: #F7F4FB;
    --text-color: #1A1224;
    --purple-deep: #2A0F40;
    --honey: #E8C547;
    --border-radius: 6px;
    --box-shadow: 0 8px 28px rgba(74, 26, 107, 0.16);
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6,
.font-alt {
    font-family: 'Cinzel', 'Times New Roman', serif !important;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.nav, .navbar-nav, .m-btn, .ht-info, small, .badge-trust {
    font-family: 'Outfit', 'Helvetica Neue', sans-serif;
}

.theme-color { color: var(--primary-color) !important; }
.theme2nd-color { color: var(--secondary-color) !important; }

.theme-bg { background-color: var(--dark-color) !important; }

.theme3rd-bg {
    background: linear-gradient(145deg, #2A0F40 0%, #12081C 55%, #1A0A2E 100%) !important;
}

.bg-gold {
    background: linear-gradient(135deg, #4A1A6B, #7B2CBF) !important;
}

.bg-honey-soft {
    background: linear-gradient(180deg, #F7F4FB 0%, #EDE4F5 100%);
}

.m-btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.m-btn-green {
    background: linear-gradient(135deg, #4A1A6B, #7B2CBF) !important;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 6px 20px rgba(74, 26, 107, 0.35);
}

.m-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(123, 44, 191, 0.4);
}

.m-btn-outline-gold {
    background: transparent !important;
    border: 1.5px solid var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}

.m-btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.12) !important;
    color: #fff !important;
}

.border-radius-15 { border-radius: var(--border-radius) !important; }

.shadow-hover {
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shadow-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow);
}

/* Trust badges */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin-top: 1.75rem;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #F7F3EB;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

/* Hero refinements */
.hero-oxum {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-oxum::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.22), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(74, 26, 107, 0.5), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.hero-oxum .container { position: relative; z-index: 1; }

.hero-brand {
    font-size: clamp(1.85rem, 4.5vw, 3.1rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.hero-lead {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    color: rgba(247, 243, 235, 0.92);
}

.frase-topo { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }

/* Pain points */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.pain-card {
    padding: 1.5rem 1.35rem;
    background: #fff;
    border-radius: var(--border-radius);
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 4px 18px rgba(74, 26, 107, 0.08);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow);
}

.pain-icon {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.pain-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.pain-card p {
    margin: 0;
    font-size: 1.05rem;
    color: #3A342C;
}

/* Service cards */
.service-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.75rem 1.5rem;
    height: 100%;
    border: 1px solid rgba(74, 26, 107, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--honey));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
}

.service-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.65rem;
    font-size: 1.2rem;
}

.service-card p {
    margin: 0;
    font-size: 1.05rem;
    color: #3A342C;
}

/* Steps */
.steps-row {
    position: relative;
}

.step-item {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(74, 26, 107, 0.35);
}

.step-item h5 {
    color: var(--secondary-color);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: rgba(247, 243, 235, 0.88);
    margin: 0;
    font-size: 1.05rem;
}

/* FAQ */
.faq-item {
    background: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 0.85rem;
    border: 1px solid rgba(74, 26, 107, 0.14);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(184, 134, 11, 0.35); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.35rem;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: var(--accent-color);
    line-height: 1;
    flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item .faq-body {
    padding: 0 1.35rem 1.25rem;
    color: #3A342C;
    font-size: 1.08rem;
}

/* Differentials checklist */
.diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.85rem 1.5rem;
}

.diff-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 1.1rem;
    color: rgba(247, 243, 235, 0.95);
}

.diff-list li::before {
    content: '✓';
    color: var(--honey);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-top: 0.15rem;
}

/* Quote block */
.quote-oxum {
    max-width: 40rem;
    margin: 2rem auto 0;
    font-style: italic;
    font-size: 1.25rem;
    color: rgba(247, 243, 235, 0.9);
    border-left: 3px solid var(--secondary-color);
    padding-left: 1.25rem;
    text-align: left;
}

.quote-oxum cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-color);
    letter-spacing: 0.04em;
}

/* Testimonials */
.testimonial-card {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--box-shadow) !important;
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.testimonial-card h5 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-style: italic;
    position: relative;
    padding: 0 6px;
    font-size: 1.05rem;
}

/* Nav */
.navbar-nav .nav-link {
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0.85rem !important;
    margin: 0 2px;
    font-size: 0.92rem;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:before { width: 70%; }

.header-nav { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12); }
.header-top.bg-gold { padding: 8px 0; }

.mandala-rotation {
    animation: mandala-spin 48s linear infinite;
    opacity: 0.85;
    max-width: 280px;
}

@keyframes mandala-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    animation: fade-up 0.9s ease both;
}

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }

.portfolio-box-02 {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.portfolio-box-02:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-box-02 img {
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.portfolio-box-02:hover img { transform: scale(1.05); }

.thumbnail-gallery {
    object-fit: cover;
    object-position: top;
}

.footer-top { position: relative; }

.social-icon a {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
    transition: var(--transition);
}

.social-icon a:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3) !important;
}

.cta-whats {
    position: relative;
    padding: 13px 28px !important;
    overflow: hidden;
    z-index: 1;
}

.cta-whats:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    z-index: -1;
}

.cta-whats:hover:after { height: 100%; }

.caixa-mobile {
    overflow: hidden;
    transition: var(--transition);
    border-radius: var(--border-radius) !important;
    position: relative;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.caixa-mobile:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.section { position: relative; z-index: 1; }

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background-color: var(--secondary-color);
}

.owl-carousel .owl-dots .owl-dot span {
    background-color: rgba(184, 134, 11, 0.45);
}

.contact-block h5 {
    color: var(--honey);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.contact-block a,
.contact-block p {
    color: #fff;
    font-size: 1.1rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 0;
    max-width: 38rem;
    text-align: left;
}

.about-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.6rem;
    font-size: 1.1rem;
    color: #2A241C;
}

.about-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.85rem;
    top: 0.65rem;
}

.amor-list-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--border-radius);
    padding: 2rem 1.75rem;
    max-width: 44rem;
    margin: 0 auto;
}

.amor-indicado-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.amor-indicado-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.75rem;
    color: rgba(247, 244, 251, 0.95);
    font-size: 1.12rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.amor-indicado-list li:last-child {
    border-bottom: none;
}

.amor-indicado-list li::before {
    content: '💜';
    position: absolute;
    left: 0;
    top: 0.55rem;
    font-size: 0.95rem;
}

.amor-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.75rem 1.4rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
}

.amor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.amor-card h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.65rem;
}

.amor-card p {
    margin: 0;
    font-size: 1.05rem;
    color: #3A342C;
}

@media (max-width: 991px) {
    .parallax { background-attachment: scroll; }
    .mandala-rotation { max-width: 200px; }
}

@media (max-width: 768px) {
    .caixa-mobile {
        margin-left: 15px;
        margin-right: 15px;
    }

    h1.display-4,
    h2.display-4,
    h3.display-4,
    .display-4 {
        font-size: 1.85rem;
    }

    .hero-oxum { min-height: auto; padding: 7rem 0 3rem; }

    .p-60px-lr {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .badge-trust { font-size: 0.72rem; }
}
