/* =========================================
   SiteAura Custom CSS
   ========================================= */

:root {
    --primary: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #60A5FA;
    --primary-soft: #eff6ff;
    
    --success: #22C55E;
    --success-soft: #dcfce7;
    
    --danger: #EF4444;
    --danger-soft: #fee2e2;
    
    --warning: #F59E0B;
    
    --dark: #0f172a;
    --dark-custom: #1e293b;
    --secondary: #64748b;
    
    --light-bg: #f8fafc;
    --light-blue: #f1f5f9;
    
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Utilities */
.text-primary { color: var(--primary) !important; }
.text-primary-light { color: var(--primary-light) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-soft { background-color: var(--primary-soft) !important; }
.bg-primary-dark { background-color: var(--primary-dark) !important; }

.text-success { color: var(--success) !important; }
.bg-success-soft { background-color: var(--success-soft) !important; }

.text-danger { color: var(--danger) !important; }
.bg-danger-soft { background-color: var(--danger-soft) !important; }

.text-whatsapp { color: var(--whatsapp) !important; }
.bg-whatsapp { background-color: var(--whatsapp) !important; }

.bg-light-gray { background-color: var(--light-bg) !important; }
.bg-light-blue { background-color: var(--light-blue) !important; }
.bg-dark-custom { background-color: var(--dark-custom) !important; }

.fw-black { font-weight: 800; }
.font-sm { font-size: 0.875rem; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }

.section-padding {
    padding: 100px 0;
}

/* Animations Variables */
.transition-all {
    transition: all 0.3s ease;
}

/* ================= Navbar ================= */
.custom-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.custom-nav .nav-link {
    color: var(--dark-custom);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

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

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

/* ================= Buttons ================= */
.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

.btn-outline-primary {
    color: var(--dark-custom);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--light-bg);
    border-color: var(--primary);
    color: var(--primary);
}

/* ================= Hero Section ================= */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 50% 120%, rgba(37, 99, 235, 0.1), transparent 50%),
                radial-gradient(circle at top left, rgba(34, 197, 94, 0.05), transparent 40%);
    min-height: 90vh;
}

.hero-title {
    line-height: 1.2;
}

.trust-badges .badge-item {
    background-color: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

/* Hero Graphics & Mockups */
.hero-graphics-wrapper {
    position: relative;
    height: 400px;
}

.decorative-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, var(--primary-soft), var(--primary-light));
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: -1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.mockup-card {
    position: absolute;
    width: 320px;
}

.before-card {
    top: 20px;
    left: 10px;
    z-index: 1;
}

.after-card {
    bottom: 20px;
    right: 10px;
    z-index: 2;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.google-result-mock .url {
    font-size: 11px;
    color: #4d5156;
}
.google-result-mock .title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin: 4px 0;
}
.google-result-mock .desc {
    font-size: 12px;
    line-height: 1.4;
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}
.floating-anim-reverse {
    animation: float-rev 7s ease-in-out infinite;
}

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

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

/* ================= Before/After Section ================= */
.border-top-danger { border-top: 4px solid var(--danger); }
.border-top-success { border-top: 4px solid var(--success); }

.google-mockup-full {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.google-mockup-full .google-title {
    color: #1a0dab;
    font-size: 18px;
    margin-bottom: 2px;
    cursor: pointer;
}
.google-mockup-full .google-title:hover { text-decoration: underline; }

.google-mockup-full .google-url {
    color: #202124;
    font-size: 12px;
    margin-bottom: 6px;
}
.google-mockup-full .google-desc {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.58;
    margin-bottom: 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}
.feature-list li i {
    width: 24px;
}

/* ================= Problem Cards ================= */
.problem-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
}
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= Solution Steps ================= */
.step-card {
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

/* ================= Benefits Section ================= */
.icon-box-sm {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= Pricing ================= */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9 !important;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1) !important;
}

.transform-scale {
    transform: scale(1.05);
    z-index: 10;
}

.transform-scale:hover {
    transform: scale(1.08) translateY(-10px);
}

/* ================= Social Proof ================= */
.testimonial-card {
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}

/* ================= FAQ ================= */
.custom-accordion .accordion-item {
    overflow: hidden;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-soft);
    color: var(--primary);
    box-shadow: none;
}
.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* ================= CTA Section ================= */
.cta-section {
    padding: 120px 0;
}
.cta-blob-1 {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}
.cta-blob-2 {
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.CTA-pulse {
    animation: pulse 2s infinite;
}

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

/* ================= Footer ================= */
.footer-links a {
    color: white;
    opacity: 0.75;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}
.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
    transform: translateX(5px);
}

/* ================= Floating WhatsApp ================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991.98px) {
    .transform-scale {
        transform: scale(1);
    }
    .transform-scale:hover {
        transform: scale(1.02) translateY(-5px);
    }
    .hero-graphics-wrapper {
        margin-top: 50px;
    }
    .before-card { left: 5%; }
    .after-card { right: 5%; }
}
