/* Custom Modern Styles — Mãe Rosana de Oxum */

:root {
    --primary-color: #7B2D8E;
    --secondary-color: #C9A0DC;
    --accent-color: #E8B4F8;
    --dark-color: #2E1065;
    --deep-purple: #4A148C;
    --light-lilac: #F3E5F5;
    --light-color: #FAF7FC;
    --text-color: #2D1B3D;
    --border-radius: 14px;
    --box-shadow: 0 10px 40px rgba(74, 20, 140, 0.18);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel Decorative', 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.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(135deg, var(--deep-purple), var(--primary-color)) !important;
}

.bg-gold {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color)) !important;
}

.bg-lilac-soft {
    background: linear-gradient(180deg, var(--light-lilac) 0%, #fff 100%) !important;
}

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

.m-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    z-index: 1;
}

.m-btn:hover:before {
    width: 100%;
}

.m-btn-green {
    background: linear-gradient(135deg, #1ebe57, #25d366, #20ba5a) !important;
    border: none;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.m-btn-green:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #25d366, #34e077, #1ebe57) !important;
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.7);
}

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

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

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

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

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(74, 20, 140, 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 10px;
    color: var(--text-color);
}

.testimonial-card p:before,
.testimonial-card p:after {
    content: '"';
    font-size: 1.5rem;
    color: var(--accent-color);
    position: absolute;
}

.testimonial-card p:before {
    left: 0;
    top: -5px;
}

.testimonial-card p:after {
    right: 0;
    bottom: -15px;
}

.navbar-nav .nav-link {
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 1rem !important;
    margin: 0 4px;
}

.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 4px 24px rgba(46, 16, 101, 0.12);
}

.header-top.bg-gold {
    padding: 8px 0;
}

.mandala-rotation {
    animation: mandala-spin 50s linear infinite;
    filter: drop-shadow(0 0 30px rgba(201, 160, 220, 0.4));
}

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

.portfolio-box-02 {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 18px rgba(74, 20, 140, 0.1);
    transition: var(--transition);
}

.portfolio-box-02:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(74, 20, 140, 0.18);
}

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

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

.footer-top {
    position: relative;
}

.footer-top:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 16, 101, 0.95), rgba(123, 45, 142, 0.9));
    z-index: -1;
}

.social-icon a {
    box-shadow: 0 6px 24px rgba(46, 16, 101, 0.2) !important;
    transition: var(--transition);
}

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

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

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

.caixa-mobile:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.caixa-mobile:hover:before {
    opacity: 1;
}

.cta-whats {
    position: relative;
    padding: 14px 28px !important;
    overflow: hidden;
    z-index: 1;
    animation: cta-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55); }
    50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.85), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

.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 {
    animation: none;
}

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

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

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

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

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

.border-radius-50 {
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(74, 20, 140, 0.15);
    transition: var(--transition);
    object-fit: cover;
    object-position: top;
}

/* Hero */
.hero-rosana {
    background: linear-gradient(160deg, rgba(46, 16, 101, 0.92) 0%, rgba(74, 20, 140, 0.85) 45%, rgba(123, 45, 142, 0.75) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 160, 220, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 180, 248, 0.2) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero-rosana::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A0DC' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    padding: 18px 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-lilac);
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(201, 160, 220, 0.25);
    backdrop-filter: blur(4px);
}

.pain-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(74, 20, 140, 0.06);
    border: 1px solid rgba(201, 160, 220, 0.3);
    transition: var(--transition);
    height: 100%;
}

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

.pain-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-pill {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--light-lilac);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    margin-bottom: 12px;
    width: 100%;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.feature-pill:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(74, 20, 140, 0.08);
}

.oxum-section {
    background: linear-gradient(135deg, var(--light-lilac) 0%, #fff 50%, var(--light-lilac) 100%);
    position: relative;
}

.oxum-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 160, 220, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.oxum-visual {
    position: relative;
    display: inline-block;
    max-width: 380px;
    width: 100%;
}

.oxum-visual__base {
    width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

.oxum-visual__mandala-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    z-index: 2;
    pointer-events: none;
}

.oxum-visual__mandala {
    width: 100%;
    opacity: 0.82;
    filter: drop-shadow(0 0 24px rgba(201, 160, 220, 0.45));
}

.service-card {
    border-top: 5px solid var(--secondary-color) !important;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    border: 1px solid rgba(201, 160, 220, 0.2);
    height: 100%;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.quote-block {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    border-radius: var(--border-radius);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.quote-block::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(201, 160, 220, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    border: 1px solid rgba(201, 160, 220, 0.15);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.yellow-after::after,
.theme2nd-after::after {
    background-color: var(--secondary-color) !important;
}

.counter .count {
    background: linear-gradient(135deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

    .col-lg-3.m-15px {
        margin: 10px 15px !important;
    }

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

    .trust-badges {
        gap: 8px;
    }

    .trust-badge {
        font-size: 0.78rem;
        padding: 6px 12px;
    }

    .quote-block {
        padding: 36px 24px;
    }
}
