/* ===== RESET E VARIÁVEIS ===== */
:root {
    --primary-dark: #0b0710;
    --primary-dark-rgb: 11, 7, 16;
    --primary-light: #1a1029;
    --accent-gold: #f7b500;
    --accent-gold-rgb: 247, 181, 0;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --text-light: #ffffff;
    --text-gray: #d8d8d8;
    --text-dark: #222222;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.2);
    --shadow-gold: 0 10px 30px rgba(247, 181, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--text-light);
    overflow-x: hidden;
}

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

.text-center { text-align: center; }
.highlight { color: var(--accent-gold); }

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: var(--text-light);
}

.shells-animation {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.shell {
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.shell:nth-child(1) { animation-delay: -0.32s; }
.shell:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 7, 16, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(247, 181, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(11, 7, 16, 0.98);
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

.btn-whatsapp-header {
    background: linear-gradient(45deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

/* ===== HERO SECTIONS ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.badge {
    background: rgba(247, 181, 0, 0.15);
    color: var(--accent-gold);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(247, 181, 0, 0.3);
    backdrop-filter: blur(10px);
}

.badge.pulse {
    animation: pulse 2s infinite;
}

.star {
    animation: spin 3s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Titles */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--accent-gold);
    background: linear-gradient(45deg, var(--accent-gold), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.subtitle-icon {
    animation: float 3s ease-in-out infinite;
}

.subtitle-icon:nth-child(2) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(247, 181, 0, 0.4);
}

.btn-primary.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(247, 181, 0, 0.4); }
    to { box-shadow: 0 0 30px rgba(247, 181, 0, 0.6); }
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-gold);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.1rem;
}

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

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

.about-content {
    max-width: 500px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.about-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    background: rgba(247, 181, 0, 0.1);
    padding: 12px;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    padding: 40px;
    border-radius: var(--border-radius-lg);
    color: var(--text-light);
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}

.card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.btn-visual {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-visual:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    text-align: center;
    margin-bottom: 25px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.service-list li:last-child {
    border-bottom: none;
}

/* ===== SOBRE O PAI DE SANTO SECTION ===== */
.pai-santo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.pai-santo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23f7b50010" points="0,500 250,250 500,500 750,250 1000,500 750,750 500,500 250,750"/></svg>') center/cover;
}

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

.pai-santo-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.pai-santo-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.pai-santo-photo {
    text-align: center;
}

.photo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.photo-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    pointer-events: none;
    opacity: 0.3;
}

.spiritual-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-dark);
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #E1306C, #F77737);
    color: white;
}

.social-icon {
    font-size: 1.2rem;
}

.pai-santo-info {
    padding-top: 20px;
}

.pai-santo-bio h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.title-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.exp-icon {
    font-size: 2rem;
    background: rgba(247, 181, 0, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.exp-content h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.exp-content p {
    font-size: 0.9rem;
    color: #666;
}

.specialties h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.specialties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialty-item {
    background: rgba(247, 181, 0, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(247, 181, 0, 0.3);
}

.pai-santo-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-gold);
}

.pai-santo-cta p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    padding: 80px 0;
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-info {
    margin-top: 20px;
}

.cta-info p {
    margin: 5px 0;
    font-size: 1rem;
}

/* ===== ATENDIMENTO PAGE ===== */
.atendimento-page {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    min-height: 100vh;
}

.atendimento-hero {
    padding: 140px 0 80px;
    color: var(--text-light);
}

.atendimento-content {
    max-width: 800px;
    margin: 0 auto;
}

.atendimento-header {
    text-align: center;
    margin-bottom: 50px;
}

.atendimento-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
}

/* Consultation Cards */
.consultation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.consultation-card {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.consultation-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

/* ===== MINI ABOUT SECTION ===== */
.mini-about-section {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin: 40px 0;
}

.mini-about-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.mini-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow);
}

.mini-info h3 {
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.mini-info p {
    opacity: 0.9;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.mini-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mini-instagram:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Location Section */
.location-section {
    margin: 40px 0;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 400px;
    margin: 0 auto;
}

.location-icon {
    font-size: 2rem;
}

.location-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

/* WhatsApp Section */
.whatsapp-section {
    margin: 50px 0;
}

.whatsapp-card {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    max-width: 500px;
    margin: 0 auto;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.whatsapp-icon {
    font-size: 2rem;
}

.whatsapp-header h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.whatsapp-description {
    margin-bottom: 30px;
    opacity: 0.9;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    margin-bottom: 25px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.info-icon {
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 80px;
}

.faq-section .section-title {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.faq-item h4 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    opacity: 0.9;
    line-height: 1.6;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    max-width: 300px;
}

.footer-contact h4,
.footer-links h4 {
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
}

.footer-bottom p {
    margin: 5px 0;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(45deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .pai-santo-profile {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pai-santo-photo {
        order: -1;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background: var(--primary-dark);
        width: 100%;
        flex-direction: column;
        gap: 0;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .btn-whatsapp-header {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pai-santo-section {
        padding: 60px 0;
    }

    .pai-santo-bio h3 {
        font-size: 1.8rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .specialties-list {
        justify-content: center;
    }

    .pai-santo-cta {
        padding: 30px 20px;
    }

    .pai-santo-cta p {
        font-size: 1.1rem;
    }

    .consultation-cards {
        grid-template-columns: 1fr;
    }

    .location-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .whatsapp-card {
        padding: 30px 20px;
    }

    .whatsapp-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .mini-about-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .profile-image {
        width: 220px;
        height: 220px;
    }

    .social-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .pai-santo-bio h3 {
        font-size: 1.6rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px 15px;
    }

    .whatsapp-text {
        display: none;
    }
}