/* Variáveis de Cores Místicas */

:root {

    --deep-purple: #3b184b;

    --mystic-purple: #603a7a;

    --bright-purple:#921df1;

    --sparkle-green: #4a9d3c;

    --moonlight: #ebd5ff;

    --crystal-white: #f5f0ff;

    --shadow-dark: rgba(0, 0, 0, 0.3);

    --transition: all 0.3s ease;

}



/* Reset e Base */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    font-family: 'Montserrat Alternates', sans-serif;

    background-color: #f9f5ff;

    color: #333;

    line-height: 1.6;

    overflow-x: hidden;

}



h1, h2 {

    font-family: 'Cinzel Decorative', serif;

    font-weight: 700;

    color: var(--bright-purple);

}

h3, h4 {

    font-family: 'Cinzel Decorative', serif;

    font-weight: 700;

}



.container {

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 15px;

}



/* Cabeçalho (Menu à Direita Corrigido) */

.mystic-header {

    background: linear-gradient(135deg, var(--deep-purple), var(--mystic-purple));

    box-shadow: 0 4px 20px var(--shadow-dark);

    position: fixed;

    width: 100%;

    top: 0;

    z-index: 1000;

    padding: 15px 0;

    transition: var(--transition);

}



.mystic-header.scrolled {

    padding: 10px 0;

    background: var(--deep-purple);

}



.header-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 15px;

}



.logo-container {

    flex-shrink: 0;

}



.logo-img {

    height: 50px;

    transition: transform 0.3s ease;

}



.logo-img:hover {

    transform: scale(1.05);

}



/* Menu Desktop (Alinhado à Direita) */

.main-nav-desktop {

    margin-left: auto; /* FORÇA O MENU PARA A DIREITA */

}



.nav-list-desktop {

    display: flex;

    list-style: none;

    align-items: center;

}



.nav-list-desktop > li {

    position: relative;

    margin-left: 25px;

}



.nav-list-desktop a {

    color: var(--crystal-white);

    text-decoration: none;

    font-weight: 500;

    font-size: 1rem;

    padding: 8px 12px;

    border-radius: 20px;

    transition: var(--transition);

    display: flex;

    align-items: center;

}



.nav-list-desktop a:hover {

    background-color: rgba(255, 255, 255, 0.15);

    transform: translateY(-2px);

}



.dropdown-icon {

    margin-left: 5px;

    transition: var(--transition);

}



.dropdown:hover .dropdown-icon {

    transform: rotate(180deg);

}



/* Dropdown Menu */

.dropdown-menu {

    position: absolute;

    top: 100%;

    left: 0;

    background: var(--deep-purple);

    border-radius: 8px;

    box-shadow: 0 5px 15px var(--shadow-dark);

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

    min-width: 180px;

    padding: 10px 0;

    z-index: 100;

    

}



.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(5px);

}



.dropdown-menu li {

    margin: 0;

    list-style: none;

}



.dropdown-menu a {

    padding: 10px 20px;

    display: block;

    color: var(--moonlight);

    transition: var(--transition);

}



.dropdown-menu a:hover {

    background-color: var(--mystic-purple);

    padding-left: 25px;

}



/* Botão Mobile (Hamburger SVG) */

.mobile-menu-toggle {

    display: none;

    background: none;

    border: none;

    cursor: pointer;

    padding: 5px;

    z-index: 1001;

}



.hamburger-icon {

    transition: var(--transition);

}



/* Menu Mobile (Deslizante) */

.mobile-nav {

    position: fixed;

    top: 0;

    right: -100%;

    width: 80%;

    max-width: 300px;

    height: 100vh;

    background: linear-gradient(135deg, var(--deep-purple), #4a2a5a);

    box-shadow: -5px 0 15px var(--shadow-dark);

    transition: right 0.4s ease;

    padding: 80px 30px 30px;

    z-index: 1000;

}



.close-menu {

    position: absolute;

    top: 20px;

    right: 20px;

    background: none;

    border: none;

    cursor: pointer;

}



.nav-list-mobile {

    list-style: none;

    

}



.nav-list-mobile li {

    margin-bottom: 20px;

}



.nav-list-mobile a {

    color: var(--crystal-white);

    text-decoration: none;

    font-size: 1.1rem;

    padding: 8px 0;

    display: block;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    transition: var(--transition);

}



.nav-list-mobile a:hover {

    color: var(--moonlight);

    padding-left: 10px;

}



/* Estados Ativos */

.mobile-nav.active {

    right: 0;

}



.mobile-menu-toggle.active .hamburger-icon {

    opacity: 0;

}



/* Seção Hero */

.esoteric-hero {

    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    height: 100vh;

    display: flex;

    align-items: center;

    position: relative;

    margin-top: 80px;

}



.hero-overlay {

    background: linear-gradient(45deg, rgba(58, 26, 74, 0.7), rgba(77, 58, 122, 0.5));

    background-image: url('/images/banner1.png');

    background-size: cover;

    background-position: center;

    background-blend-mode: overlay; /* Mistura com o gradiente */

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    /* Cor de fundo com transparência */

    background-color: rgba(58, 26, 74, 0.7);

}



.overlay-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0.5; /* Ajuste a transparência */

    position: absolute;

    top: 0;

    left: 0;

}



.hero-content {

    position: relative;

    z-index: 1;

    text-align: center;

    color: white;

    max-width: 800px;

    margin: 0 auto;

    padding: 20px;

}



.hero-content h1 {

    font-size: 2.8rem;

    margin-bottom: 20px;

    color: white;

    text-shadow: 0 2px 5px var(--shadow-dark);

    animation: fadeInDown 1s ease;

}



.hero-subtitle {

    font-size: 1.3rem;

    margin-bottom: 30px;

    animation: fadeInUp 1s ease;

    opacity: 0.9;

}





.cta-button {

    display: inline-block;

    background-color: var(--sparkle-green);

    color: white;

    padding: 15px 35px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    transition: var(--transition);

    font-size: 1.1rem;

    border: none;

    cursor: pointer;

    animation: fadeIn 1.5s ease;

}



.cta-button:hover {

    background-color: white;

    color: var(--sparkle-green);

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}



.pulse {

    animation: pulse 2s infinite;

}



/* Seções */

.esoteric-section {

    padding: 100px 0;

    position: relative;

}



.dark-bg {

    background-color: var(--deep-purple);

    color: white;

}



.section-header {

    text-align: center;

    margin-bottom: 60px;

}



.section-header h2 {

    font-size: 2.5rem;

    margin-bottom: 15px;

    position: relative;

}



.section-subtitle {

    font-size: 1.1rem;

    opacity: 0.8;

    margin-top: 10px;

}



.divider {

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 15px 0;

}



.divider-line {

    width: 50px;

    height: 2px;

    background-color: var(--moonlight);

    margin: 0 15px;

}



.divider-icon {

    width: 40px;

    height: 40px;

}



.dark-bg .divider-line

 {

    background-color: var(--moonlight);

    color: var(--moonlight);

}



/* Sobre */

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

}



.about-image {

    position: relative;

    border-radius: 30px 300px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

}



.about-image img {

    width: 100%;

    height: auto;

    display: block;

    transition: var(--transition);

}



/*.crystal-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(230, 213, 255, 0.1)" points="50,0 100,0 50,100 0,100"/></svg>');

    background-size: 50px 50px;

    opacity: 0.5;

}*/



.about-content .intro {

    font-size: 1.2rem;

    margin-bottom: 25px;

    font-weight: 500;

    text-align: justify;

}



.about-highlights {

    margin: 30px 0;

}



.highlight-item {

    display: flex;

    align-items: center;

    margin-bottom: 15px;

}



.highlight-icon {

    width: 24px;

    height: 24px;

    margin-right: 15px;

    flex-shrink: 0;

}



/* Serviços */

.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 30px;

}



.service-card {

    background: white;

    border-radius: 10px;

    padding: 30px;

    text-align: center;

    transition: var(--transition);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



.dark-bg .service-card {

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

}



.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);

}



.service-icon {

    margin-bottom: 20px;

    color: #921df1;

}



.service-icon svg {

    width: 48px;

    height: 48px;

}



.dark-bg .service-icon svg {

    stroke: #7233a5;

}



.service-card h3 {

    margin-bottom: 15px;

    font-size: 1.5rem;

}



.service-card p {

    margin-bottom: 15px;

    font-size: 0.95rem;

}



.service-duration {

    font-size: 0.9rem;

    color: var(--mystic-purple);

    margin-bottom: 20px;

    font-weight: 500;

}



.dark-bg .service-duration {

    color: var(--moonlight);

}



.service-btn {

    display: inline-block;

    background-color: var(--mystic-purple);

    color: white;

    padding: 10px 25px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 500;

    transition: var(--transition);

    font-size: 0.9rem;

}



.service-btn:hover {

    background-color: var(--deep-purple);

    transform: translateY(-2px);

}



.dark-bg .service-btn {

    background-color: var(--moonlight);

    color: var(--deep-purple);

}



.dark-bg .service-btn:hover {

    background-color: white;

}



/* Depoimentos */

.testimonials-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 30px;

}



.testimonial-card {

    background: white;

    border-radius: 10px;

    padding: 30px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    transition: var(--transition);

    position: relative;

}



.testimonial-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}



.testimonial-card::before {

    content: '"';

    font-family: serif;

    font-size: 5rem;

    color: var(--moonlight);

    position: absolute;

    top: 10px;

    left: 20px;

    line-height: 1;

    opacity: 0.3;

}



.testimonial-content {

    position: relative;

    z-index: 1;

    margin-bottom: 20px;

    font-style: italic;

}



.testimonial-author {

    font-weight: 500;

    color: var(--mystic-purple);

    text-align: right;

}



/* Contato */

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

}



.contact-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

}



.info-item {

    display: flex;

    align-items: center;

    margin-bottom: 20px;

}



.info-icon {

    width: 24px;

    height: 24px;

    margin-right: 15px;

    flex-shrink: 0;

}



.info-item p {

    font-size: 1.1rem;

}



.icons{

    width: 24px;

    height: 24px;

    margin-right: 10px;

}



.social-links {

    display: flex;

    gap: 15px;

    margin-top: 30px;

}



.social-links a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 80px;

    height: 80px;

    background-color: rgba(255, 255, 255, 0.1);

    color: white;

    border-radius: 50%;

    transition: var(--transition);

}



.social-links a:hover {

    background-color: var(--mystic-purple);

    transform: translateY(-3px);

}



.social-links a svg {

    width: 24px;

    height: 24px;

}





.svg-icon{

    width: 40px;

    height: 40px;        

}



.contact-form .form-group {

    margin-bottom: 20px;

}



.contact-form label {

    display: block;

    margin-bottom: 8px;

    font-weight: 500;

    color: white;

}



.contact-form input,

.contact-form select,

.contact-form textarea {

    width: 100%;

    padding: 12px 15px;

    border: 1px solid rgba(255, 255, 255, 0.4);

    border-radius: 5px;

    background-color: rgba(245, 173, 255, 0.3);

    color: rgb(0, 0, 0);

    font-family: 'Montserrat Alternates', sans-serif;

    font-weight: 700;

    transition: var(--transition);

}



.contact-form input:focus,

.contact-form select:focus,

.contact-form textarea:focus {

    outline: none;

    border-color: var(--moonlight);

    background-color: rgba(255, 255, 255, 0.2);

}



.contact-form textarea {

    resize: vertical;

    min-height: 120px;

}



/* Rodapé */

.mystic-footer {

    background-color: #2a0f3a;

    color: white;

    padding: 60px 0 20px;

}



.footer-content {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 40px;

    margin-bottom: 40px;

}



.footer-logo img {

    height: 50px;

    margin-bottom: 15px;

}



.footer-links h3,

.footer-newsletter h3 {

    font-size: 1.3rem;

    margin-bottom: 20px;

    color: var(--moonlight);

}



.footer-links ul {

    list-style: none;

}



.footer-links li {

    margin-bottom: 10px;

}



.footer-links a {

    color: white;

    text-decoration: none;

    transition: var(--transition);

}



.footer-links a:hover {

    color: var(--moonlight);

    padding-left: 5px;

}



.footer-newsletter p {

    margin-bottom: 15px;

    opacity: 0.8;

}



.newsletter-form {

    display: flex;

}



.newsletter-form input {

    flex: 1;

    padding: 12px 15px;

    border: none;

    border-radius: 30px 0 0 30px;

    font-family: 'Montserrat Alternates', sans-serif;

}



.newsletter-form button {

    padding: 0 20px;

    background-color: var(--mystic-purple);

    color: white;

    border: none;

    border-radius: 0 30px 30px 0;

    cursor: pointer;

    transition: var(--transition);

}



.newsletter-form button:hover {

    background-color: var(--moonlight);

    color: var(--deep-purple);

}



.footer-bottom {

    text-align: center;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 0.9rem;

    opacity: 0.7;

}



/* Animações */

@keyframes fadeIn {

    from { opacity: 0; }

    to { opacity: 1; }

}



@keyframes fadeInDown {

    from {

        opacity: 0;

        transform: translateY(-20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



@keyframes pulse {

    0% {

        box-shadow: 0 0 0 0 rgba(213, 255, 232, 0.7);

    }

    70% {

        box-shadow: 0 0 0 15px rgba(230, 213, 255, 0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(230, 213, 255, 0);

    }

}



/* Responsividade */

@media (max-width: 992px) {

    .main-nav-desktop {

        display: none;

    }



    .mobile-menu-toggle {

        display: block;

    }



    .about-grid {

        grid-template-columns: 1fr;

    }



    .about-image {

        max-width: 500px;

        margin: 0 auto;

    }



    .contact-grid {

        grid-template-columns: 1fr;

    }



    .hero-content h1 {

        font-size: 2.3rem;

    }

}



@media (max-width: 768px) {

    .hero-content h1 {

        font-size: 2rem;

    }



    .hero-subtitle {

        font-size: 1.1rem;

    }



    .esoteric-section {

        padding: 70px 0;

    }



    .section-header h2 {

        font-size: 2rem;

    }

}



@media (max-width: 576px) {

    .logo-img {

        height: 40px;

    }



    .hero-content h1 {

        font-size: 1.8rem;

    }



    .cta-button {

        padding: 12px 25px;

        font-size: 1rem;

    }



    .service-card {

        padding: 25px;

    }

}