/* CSS Reset & Variables */
:root {
    --bg-color: #050508;
    --bg-light: #101016;
    --bg-lighter: #1a1a24;
    --text-main: #f0f0f5;
    --text-muted: #a0a0b8;
    --primary-color: #d4af37; /* Metallic Gold */
    --primary-hover: #f1c40f;
    --accent-color: #7b1fa2; /* Purple */
    --red-dark: #a10000;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(212, 175, 55, 0.2);
    --gold-gradient: linear-gradient(135deg, #d4af37, #8a6327);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at top right, rgba(123, 31, 162, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

/* Typography */
h1, h2, h3, h4, .logo, .hero-badge {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.divider {
    height: 3px;
    width: 80px;
    background: var(--gold-gradient);
    margin: 15px auto 40px;
    border-radius: 2px;
}
.divider-left {
    height: 3px;
    width: 80px;
    background: var(--gold-gradient);
    margin: 15px 0 30px;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: -20px auto 50px;
    font-size: 1.1rem;
}

/* Animations */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-dark), #5c0000);
    color: #fff;
    border: 1px solid #ff3333;
    box-shadow: 0 4px 20px rgba(161, 0, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.5);
    background: linear-gradient(135deg, #c20000, #7a0000);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-whatsapp-header {
    background-color: #25D366;
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}
.btn-whatsapp-header:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

.floating-whatsapp .tooltip {
    position: absolute;
    right: 80px;
    background-color: #fff;
    color: #111;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.floating-whatsapp .tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.floating-whatsapp:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.floating-label {
    display: none;
}

.btn-whatsapp-hero {
    background: linear-gradient(135deg, #128C7E, #25D366);
    border-color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    padding: 16px 28px;
}

.btn-whatsapp-hero:hover {
    background: linear-gradient(135deg, #0f7a6e, #1ebe57);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

.wa-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.wa-btn-text strong {
    font-size: 0.95rem;
}

.wa-btn-text small {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: all 0.4s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.logo {
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.logo span {
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('/preview/brujo-salamanquero-don-tadeo/assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5,5,8,0.5) 0%, rgba(5,5,8,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(161, 0, 0, 0.2);
    border: 1px solid var(--red-dark);
    color: #ff6666;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(161, 0, 0, 0.3);
}

.hero-mastery {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    line-height: 1.55;
    color: var(--primary-color);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.25);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: #e8e8f0;
    margin-bottom: 20px;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    font-weight: 500;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 5px 20px rgba(0,0,0,1);
    letter-spacing: 1px;
}

.hero h1 span {
    font-size: 5.5rem;
    display: block;
    margin-top: 5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.hero .description {
    font-size: 1.15rem;
    color: #dcdcdc;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 5%;
    background: var(--bg-lighter);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 10;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* About Section */
.about {
    padding: 100px 5%;
    background: var(--bg-color);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    padding: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}

.image-frame::before, .image-frame::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
}
.image-frame::before { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.image-frame::after { bottom: -10px; right: -10px; border-left: none; border-top: none; }

.img-bg {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    filter: sepia(0.3) brightness(0.8);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-top: 30px;
}

.about-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Features */
.features {
    padding: 100px 5%;
    background: var(--bg-light);
    text-align: center;
}

.features h2 {
    font-size: 2.8rem;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: var(--bg-lighter);
    padding: 40px 30px;
    border-radius: 8px;
    width: 350px;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.02);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-item p {
    color: var(--text-muted);
}

/* Services */
.services {
    padding: 100px 5%;
    background: var(--bg-color);
    text-align: center;
}

.services h2 {
    font-size: 3rem;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    width: 360px;
    transition: all 0.4s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    border-color: rgba(212, 175, 55, 0.4);
}

.card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
}

.service-icon {
    position: absolute;
    top: 210px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--primary-color);
    z-index: 10;
}

.card-content {
    padding: 40px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover {
    color: #fff;
}
.service-link:hover i {
    transform: translateX(5px);
}

/* How It Works */
.how-it-works {
    padding: 100px 5%;
    background: var(--bg-light);
    text-align: center;
}
.how-it-works h2 {
    font-size: 2.8rem;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    background: var(--bg-color);
    padding: 40px 20px;
    border-radius: 10px;
    width: 250px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}
.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    padding: 100px 5%;
    background: var(--bg-color);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.8rem;
}

.testimo-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.testimo-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    width: 360px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.15);
    margin-bottom: 15px;
}

.testimo-card p {
    font-style: italic;
    color: #dcdcdc;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1rem;
}

.testimo-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-lighter);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.testimo-author h4 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}
.testimo-author span {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* FAQ */
.faq-section {
    padding: 100px 5%;
    background: var(--bg-light);
    text-align: center;
}
.faq-section h2 { font-size: 2.8rem; }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--bg-color);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    position: relative;
    font-family: var(--font-heading);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-content {
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact WhatsApp card */
.contact-phone {
    padding: 70px 5%;
    background: var(--bg-light);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-phone-card {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 32px 36px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(18, 140, 126, 0.12), rgba(37, 211, 102, 0.08));
    border: 1px solid rgba(37, 211, 102, 0.35);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.contact-phone-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.contact-phone-body {
    flex: 1;
    min-width: 220px;
}

.contact-phone-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-phone-number {
    display: inline-block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    text-decoration: none;
    letter-spacing: 1px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.contact-phone-number:hover {
    color: #25D366;
}

.contact-phone-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-phone-btn {
    flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(10,10,15,0.85), rgba(10,10,15,0.95)), url('/preview/brujo-salamanquero-don-tadeo/assets/astrology.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px;
    text-align: center;
    border-top: 2px solid var(--primary-color);
}

.cta-banner h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #fff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-pulse {
    display: inline-block;
    animation: cta-pulse 2s infinite;
}
@keyframes cta-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer */
footer {
    background: #000;
    padding: 80px 5% 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-info { max-width: 350px; }
.footer-info h3 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.footer-info h3 span { color: var(--primary-color); }
.footer-info p { color: var(--text-muted); }
.footer-tagline {
    margin-top: 15px;
    font-style: italic;
    color: var(--primary-color) !important;
}

.footer-mastery {
    margin-top: 12px;
    color: #d4c4a0 !important;
    font-size: 0.98rem;
    line-height: 1.6;
}

.footer-wa-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.footer-wa-link:hover {
    color: #25D366;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 22px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.footer-wa-btn:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    width: 40px; height: 40px;
    background: var(--bg-lighter);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}
.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}
.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary-color); }

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container { flex-direction: column; text-align: center; }
    .divider-left { margin: 15px auto 30px; }
    .about-list li { justify-content: center; }
    .hero h1 { font-size: 3.5rem; }
    .hero h1 span { font-size: 4.5rem; }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
        background: rgba(5, 5, 8, 0.98);
        gap: 15px;
    }
    nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .btn-whatsapp-header { display: none; }
    .contact-phone-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 22px;
    }
    .contact-phone-btn { width: 100%; justify-content: center; }
    .floating-whatsapp {
        width: auto;
        max-width: calc(100vw - 40px);
        min-width: 55px;
        height: 55px;
        font-size: 28px;
        right: 20px;
        bottom: 20px;
        border-radius: 28px;
        padding: 0 14px 0 12px;
        gap: 8px;
        flex-direction: row;
    }
    .floating-label {
        display: inline;
        font-size: 12px;
        font-weight: 700;
        font-family: var(--font-body);
        letter-spacing: 0.3px;
        white-space: nowrap;
    }
    .floating-whatsapp .tooltip { display: none; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero h1 span { font-size: 3.5rem; }
    .services h2, .cta-banner h2, .about-text h2, .how-it-works h2 { font-size: 2.2rem; }
    
    .stats { flex-direction: column; gap: 40px; }
    .footer-content { flex-direction: column; }
}

@media (max-width: 480px) {
    .service-card, .testimo-card, .feature-item, .step-item { width: 100%; }
    .hero h1 { font-size: 2.2rem; }
    .hero h1 span { font-size: 2.8rem; }
    .hero-mastery { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; }
}
