/* ===== VARIÁVEIS E RESET ===== */
:root {
    --primary-color: #1a237e; /* Azul profundo - Ogum */
    --secondary-color: #b71c1c; /* Vermelho - força, proteção */
    --accent-color: #ffab00; /* Dourado/âmbar - luz espiritual */
    --light-color: #f5f5f5;
    --dark-color: #121212;
    --text-color: #333333;
    --text-light: #777777;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.2rem;
}

.highlight {
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #8a0000;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-youtube {
    background-color: #FF0000;
    color: white;
}

.btn-youtube:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.2rem;
}

/* ===== HEADER ===== */
.header {
    background-color: rgba(26, 35, 126, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 40px;
    width: auto;
}

.logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('assets/images/background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.services {
    margin-top: 40px;
}

.services h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* ===== HOROSCOPE SECTION ===== */
.horoscope {
    padding: 100px 0;
    background-color: white;
}

.horoscope-info {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.horoscope-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.horoscope-info i {
    color: var(--primary-color);
}

.signs-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sign-filter {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.sign-filter.active, .sign-filter:hover {
    background-color: var(--primary-color);
    color: white;
}

.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.zodiac-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.zodiac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.zodiac-header {
    padding: 20px;
    color: white;
    text-align: center;
    position: relative;
}

.zodiac-header.fire { background-color: #ff6b6b; }
.zodiac-header.earth { background-color: #6b8e23; }
.zodiac-header.air { background-color: #4ecdc4; }
.zodiac-header.water { background-color: #1e90ff; }

.zodiac-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.zodiac-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.zodiac-date {
    font-size: 1rem;
    opacity: 0.9;
}

.zodiac-content {
    padding: 20px;
}

.zodiac-content p {
    margin-bottom: 15px;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.horoscope-source {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.channel-cta {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.channel-cta p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 100px 0;
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-cta {
    text-align: center;
    background-color: #f0f7ff;
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.process-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.contact-icon.whatsapp { background-color: #25D366; }
.contact-icon.youtube { background-color: #FF0000; }
.contact-icon.instagram { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.contact-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
}

.final-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #0d1440);
    color: white;
    padding: 60px 40px;
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.final-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo span {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: white;
}

.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #777;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {