/* Estilos Globais */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #2c0a16;
    --bg-medium: #4a1526;
    --bg-light: #6a2639;
    --text-light: #f5f5f5;
    --text-gold: #d4af37;
    --accent-gold: #d4af37;
    --accent-red: #8b0000;
    --accent-copper: #b87333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('../images/bg/bg-texture.png');
    background-repeat: repeat;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--text-gold);
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-copper));
    color: var(--bg-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: var(--bg-dark);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.hover-glow {
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    to {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.7);
    }
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-gold);
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 10, 22, 0.9);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 10, 22, 0.8), rgba(44, 10, 22, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Módulos Section */
.modules-container {
    position: relative;
}

.modules-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.module-card {
    background-color: rgba(74, 21, 38, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.module-card-image {
    height: 200px;
    overflow: hidden;
}

.module-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.module-card:hover .module-card-image img {
    transform: scale(1.05);
}

.module-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.module-card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-card-title i {
    color: var(--accent-gold);
}

.module-card-description {
    color: var(--text-light);
    font-size: 0.95rem;
    flex: 1;
}

/* Benefícios Section */
.benefits {
    background-image: url('../images/bg/symbols-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 10, 22, 0.85);
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: rgba(74, 21, 38, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-description {
    color: var(--text-light);
    font-size: 1rem;
}

.whatsapp-support {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.whatsapp-support i {
    color: #25D366;
    font-size: 1.2rem;
}

/* Preço e CTA */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.price-tag {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.red-price {
    background-color: var(--accent-red);
    color: white;
    border: 2px solid var(--accent-gold);
}

.red-price span {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-medium);
}

.testimonials-container {
    max-width: 900px;
}

.testimonial-card {
    background-color: rgba(74, 21, 38, 0.7);
    padding: 30px;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Cinzel', serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--accent-gold);
    font-weight: 600;
    text-align: right;
}

/* CTA Section */
.cta {
    background-image: url('../images/bg/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 10, 22, 0.8);
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 0;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.social-links i {
    font-size: 1.2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.copyright {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-copper));
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.floating-btn i {
    font-size: 1.5rem;
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* Elementos Místicos */
.mystic-symbol {
    position: absolute;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.symbol-1 {
    top: 20%;
    left: 5%;
    width: 100px;
    animation: float 8s infinite ease-in-out;
}

.symbol-2 {
    top: 40%;
    right: 5%;
    width: 80px;
    animation: float 10s infinite ease-in-out;
}

.symbol-3 {
    bottom: 15%;
    left: 10%;
    width: 70px;
    animation: float 12s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Partículas Místicas */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.mystic-particle {
    position: absolute;
    background-color: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.2;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .modules-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modules-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .module-card-image {
        height: 180px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero .btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
    
    .modules-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .footer-nav {
        gap: 15px;
    }
    
    .price-container {
        width: 100%;
    }
    
    .price-tag, .cta-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 10px 0;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero {
        padding-top: 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero .btn {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .module-card-title {
        font-size: 1.2rem;
    }
    
    .module-card-image {
        height: 160px;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 15px;
        margin: 15px auto;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .cta p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .price-tag {
        font-size: 1.3rem;
        padding: 12px 20px;
    }
    
    .red-price span {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-logo {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .social-links {
        margin-bottom: 20px;
    }
    
    .footer-nav {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .module-card-title {
        font-size: 1.1rem;
    }
    
    .benefit-title {
        font-size: 1rem;
    }
    
    .cta h2 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Otimizações para dispositivos touch */
@media (hover: none) {
    .btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .btn:active {
        transform: translateY(2px);
    }
    
    .module-card:hover {
        transform: translateY(-5px);
    }
    
    .benefit-card:hover {
        transform: none;
    }
    
    .floating-btn:hover {
        transform: none;
    }
    
    .floating-btn:active {
        transform: scale(0.95);
    }
}
