:root {
    --primary-color: #25d366;
    /* WhatsApp Green - only for buttons */
    --gold-accent: #D4AF37;
    /* Premium Gold */
    --gold-light: #F4E4C1;
    /* Light Gold */
    --gold-dark: #B8941E;
    /* Dark Gold */
    --bg-white: #FFFFFF;
    /* Pure White */
    --bg-cream: #FAF8F3;
    /* Cream White */
    --bg-light: #F5F1E8;
    /* Light Cream */
    --text-dark: #2C2C2C;
    /* Dark Text */
    --text-muted: #6B6B6B;
    /* Muted Text */
    --accent: #D4AF37;
    /* Gold for accents */
    --glass: rgba(212, 175, 55, 0.05);
    /* Gold glass effect */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
.logo {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.gold {
    color: var(--gold-accent);
    font-weight: 700;
}

.purple {
    color: var(--gold-dark);
    font-weight: 700;
}

.red {
    color: var(--gold-accent);
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

.btn-primary.mini {
    padding: 10px 20px;
    font-size: 0.85rem;
    animation: none;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gold-accent);
    color: #fff;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-accent);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold-accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.badge {
    display: inline-block;
    background: var(--gold-light);
    border: 2px solid var(--gold-accent);
    color: var(--gold-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    animation: bounce 2s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float img {
    width: 40px;
}

/* Sections */
section {
    padding: 100px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about {
    background: var(--bg-white);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    border: 3px solid var(--gold-accent);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--gold-light);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--gold-accent);
}

/* Ritual */
.ritual {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ritual h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 40px;
    font-weight: 600;
}

.effects-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.effects-grid span {
    background: var(--bg-white);
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid var(--gold-accent);
    font-weight: bold;
    color: var(--gold-dark);
}

.guarantee-box {
    background: var(--bg-white);
    display: inline-block;
    padding: 15px 35px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.vagas {
    color: var(--gold-dark);
    margin-top: 20px;
    font-weight: bold;
}

/* Animations */
@keyframes subtle-pulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Pulse Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

.pulse {
    animation: shadow-pulse 2s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(212, 175, 55, 0.4);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.testimonials-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-videos {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg,
            var(--gold-accent) 0%,
            var(--secondary-color) 50%,
            var(--gold-accent) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.video-wrapper:hover::before {
    opacity: 1;
    animation: neon-glow 2s ease-in-out infinite;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.video-container {
    position: relative;
    padding-bottom: 177.78%;
    /* 9:16 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 18px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonials-cta {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

@keyframes neon-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px var(--gold-accent)) drop-shadow(0 0 10px var(--gold-accent));
    }

    50% {
        filter: drop-shadow(0 0 10px var(--gold-accent)) drop-shadow(0 0 20px var(--gold-accent)) drop-shadow(0 0 30px var(--secondary-color));
    }
}


/* Footer */
footer {
    background: var(--bg-white);
    padding: 80px 0 20px;
    border-top: 2px solid var(--gold-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--gold-light);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem !important;
        word-break: break-word;
    }

    .hero h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 15px;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 0.9rem;
        word-break: break-word;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    header .btn-primary.mini {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .ritual h2 {
        font-size: 1.6rem;
        padding: 0 15px;
        word-break: break-word;
    }

    .about-text h2 {
        font-size: 1.8rem;
        word-break: break-word;
    }

    .services h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .effects-grid {
        gap: 15px;
        padding: 0 15px;
    }

    .effects-grid span {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 28px;
    }

    .guarantee-box {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .guarantee-box p {
        word-break: break-word;
    }

    .testimonials-header h2 {
        font-size: 2rem;
        padding: 0 15px;
    }

    .testimonials-header .subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .testimonials-videos {
        gap: 30px;
        padding: 0 15px;
    }

    .video-wrapper {
        border-radius: 15px;
    }

    .video-container {
        border-radius: 13px;
    }

    .testimonials-cta {
        margin-top: 40px;
        padding: 0 15px;
    }
}