/* Ceani São José — Sales Page */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,600;1,500&display=swap');

:root {
    /* Colors - Medical Elite Palette (Reduced Purple Balance) */
    --primary: #661081;
    --primary-light: #fdfcff;
    --primary-dark: #111827; /* Neutral Deep Slate for better balance */
    --primary-gradient: linear-gradient(135deg, #661081 0%, #1e1b4b 100%);
    --accent: #10b981; 
    --accent-hover: #059669;
    --white: #ffffff;
    --bg: #f8fafc; /* Clean, modern medical off-white */
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Sora', sans-serif;
    --font-serif: 'Lora', serif;
    
    /* Geometry & Shadows (Organic v3) */
    --radius-sm: 8px;
    --radius: 18px;
    --radius-lg: 32px;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(102, 16, 129, 0.05);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* --- Base & Reset --- */
*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    background-image: 
        radial-gradient(circle at 2px 2px, var(--border) 1px, transparent 0);
    background-size: 32px 32px; /* Technical Mesh Background */
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
}

/* --- Navigation --- */
.nav {
    background: var(--white);
    padding: 0 4rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center; /* Centered Logo */
    position: relative; /* Disabled Sticky */
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-brand img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px; /* Pill style */
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}

.nav-cta:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--accent-hover);
    filter: brightness(1.1);
}

.nav-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 80px 4rem;
    background: var(--bg);
    overflow: hidden;
    min-height: 67vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(102, 16, 129, 0.03) 0%, transparent 60%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(102, 16, 129, 0.02) 0%, transparent 70%);
    z-index: 3;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.12;
    filter: saturate(0);
}

.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .hero-video-desktop {
        display: none;
    }
    .hero-video-mobile {
        display: block;
    }
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1100px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
}

.hero-content {
    max-width: 1200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: inline-block;
    border: 1px solid var(--border);
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
    width: 100%;
}

.h-badge {
    background: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.h-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.h-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.h-badge:hover::before {
    opacity: 1;
}

.h-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}


.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.9;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.hero p.hero-lead {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 48px;
}

.hero-cta {
    margin-top: 16px;
    margin-bottom: 100px;
}

@media (max-width: 1200px) {
    .hero-cta {
        margin-bottom: 80px;
    }
}


.hero h1 em,
.hero h1 span:not(.hero-highlight) {
    display: block;
    font-style: italic;
    font-weight: 400;
    font-family: var(--font-serif);
    color: var(--primary);
    white-space: nowrap;
}

.hero h1 span:not(.hero-highlight) {
    font-style: normal;
    font-family: var(--font-display);
    color: inherit;
    white-space: nowrap;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.25em;
    background: var(--accent);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 24px;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    animation: h-pulse 3s infinite ease-in-out;
}

.hero-highlight svg {
    width: 20px;
    height: 20px;
    stroke-width: 4px;
}

@keyframes h-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.6); }
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius);
    font-weight: 800;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -10px var(--primary);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(102, 16, 129, 0.4);
}

.hero-card {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    border-left: 8px solid var(--primary);
    max-width: 380px;
}

/* --- Floating Trust Card (v5 Elite) --- */
.trust-strip {
    margin-top: -120px; /* Integration higher between s1 and s2 */
    padding: 0 2rem;
    position: relative;
    z-index: 20;
}

.trust-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}


.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.trust-item svg {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

/* --- Section Dividers --- */
.section-curve {
    position: relative;
    height: 60px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.section-curve svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--bg);
}

/* --- Sections Common --- */
section {
    padding: 100px 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-label {
    display: block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

/* --- FAQ Section --- */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 24px 32px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    color: var(--primary-dark);
}

.faq-answer {
    max-height: 0;
    padding: 0 32px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 32px 32px;
    opacity: 1;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-question svg {
    transition: transform 0.3s ease;
}

/* --- Product Bento Grid --- */
.product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.product-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    justify-content: flex-start;
}

.product-card.featured {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 10;
    padding: 32px; /* Uniform padding */
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .product-card.featured {
        transform: scale(1);
    }
}


.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.product-card.featured:hover {
    transform: scale(1.06) translateY(-4px);
}

.product-card img {
    width: 320px;
    height: 230px;
    object-fit: contain;
    margin: 0 auto 24px;
}

.p-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.p-status {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: underline;
    margin-top: auto;
}

.p-status-accent {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    margin-top: auto;
}

.p-highlight-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 4px;
    white-space: nowrap;
}

.product-card.featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    z-index: -1;
    border-radius: calc(var(--radius) + 2px);
    opacity: 0.3;
    animation: glow-rotate 6s infinite linear;
}

.product-card.p-invisible::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent), var(--primary), var(--accent));
    z-index: -1;
    border-radius: calc(var(--radius) + 2px);
    opacity: 0.15;
}

@keyframes glow-rotate {
    0% { filter: blur(10px) hue-rotate(0deg); }
    100% { filter: blur(15px) hue-rotate(360deg); }
}

.product-card img {
    width: 320px;
    margin: 0 auto 32px;
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* --- Mobile --- */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 1.5rem;
    }
    
    .hero::before {
        width: 100%;
        opacity: 0.2;
        mask-image: none;
        background-position: right top;
    }
    
    .hero-inner {
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-badges {
        gap: 16px 24px;
        margin-bottom: 32px;
    }

    .h-badge {
        font-size: 0.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-group {
        align-items: center;
    }
}

/* Animations */
.rv { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.rv.v { opacity: 1; transform: translateY(0); }

/* HERO FORM MODERNIZED */
.hero-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}


.hero-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--primary-gradient);
}

.form-header { margin-bottom: 32px; }
.form-header h3 { font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 8px; }
.form-header p { font-size: 0.9rem; color: var(--text-muted); }

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input, 
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 2px solid var(--border);
  font-family: var(--font-display); /* Sora */
  font-size: 1rem;
  color: var(--text);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-sm);
}

.form-group input:focus, 
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 16, 129, 0.05);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -10px var(--primary);
  border-radius: var(--radius-sm);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -12px var(--primary);
}

.btn-submit svg { transition: transform 0.3s ease; }
.btn-submit:hover svg { transform: translateX(4px); }

.form-footer {
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.7;
}

/* DEPOIMENTOS GRID */
.dep-sec {
    background: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.dep-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 1;
}

.dep-sec::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/img/background-2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}



.dep-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.dep-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}


.dep-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stars {
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.dep-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 32px;
    line-height: 1.7;
}


.dep-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dep-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.dep-info {
    display: flex;
    flex-direction: column;
}

.dep-name {
    font-weight: 800;
    color: var(--text);
}

.dep-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}


@media (max-width: 768px) {
    .dep-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Video styles consolidated at top */


/* --- Footer Wrapper --- */
.footer-wrapper {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/img/background-2-1.png');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

/* --- Footer Premium --- */
.footer {
    color: var(--white);
    padding: 60px 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    width: 100%;
}

.footer-copy {
    opacity: 0.7;
    font-size: 0.85rem;
    flex: 1;
    text-align: center;
    order: 2;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex: 1;
    text-align: left;
    order: 1;
    justify-content: flex-start;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-signature {
    margin-top: 0;
    flex: 1;
    text-align: right;
    order: 3;
}

.footer-developed {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    color: #f0f0f0;
}

.footer-developed span {
    color: #f0f0f0;
}

.asthros-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.asthros-logo {
    height: 15px !important;
    width: auto !important;
    display: block;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.asthros-logo-link:hover .asthros-logo {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(180, 255, 0, 0.6));
}

.footer-logo {
    height: 44px;
    box-sizing: content-box;
    padding: 10px 24px;
    margin-bottom: 24px;
    object-fit: contain;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* --- Address Section (v8.2) --- */
.addr-sec {
    color: var(--white);
    padding: 40px 1.5rem;
    position: relative;
    z-index: 1;
}

.addr-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.addr-title {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 8px;
    line-height: 1.1;
}

.addr-title em {
    font-style: italic;
    color: var(--accent);
}

.addr-text {
    font-size: 0.9rem;
    opacity: 0.6;
}

.addr-map {
    color: var(--accent);
    font-weight: 800;
    text-decoration: underline;
}

.btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.addr-right .btn-primary {
    width: 100%;
    margin-bottom: 24px;
}

/* --- Floating Action Button (FAB) v6 --- */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
    background: #25D366; /* WhatsApp Green */
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5) translateY(20px);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.floating-cta:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.floating-cta svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.faq-cta {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.faq-cta-btns {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-tel-faq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.btn-tel-faq:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.faq-cta-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.accent-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.fab-bubble {
    position: absolute;
    right: 75px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 12px 20px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

/* Triangle for bubble */
.fab-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--white);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    z-index: -1;
    animation: cta-pulse 2s infinite;
}


@keyframes cta-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    /* --- Nav Mobile --- */
    .nav {
        padding: 0 1.5rem;
        height: 70px;
    }
    
    .nav-brand img {
        height: 36px;
    }

    /* --- Hero Mobile --- */
    .hero {
        padding: 80px 1.5rem 40px;
        min-height: auto;
        text-align: center;
    }

    .hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badges {
        display: flex !important;
        justify-content: center !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .h-badge {
        flex: 0 1 auto !important;
        white-space: nowrap;
    }

    h1 {
        font-size: 2rem;
    }
    
    .hero-form {
        max-width: 100%;
        padding: 30px 20px;
    }

    /* --- Trust Strip Mobile --- */
    .trust-strip {
        margin-top: -100px; /* Restore overlap for mobile */
        padding: 0 1.5rem;
    }

    .trust-inner {
        padding: 24px 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* --- Product Grid Mobile --- */
    .product-grid {
        grid-template-columns: 1fr !important;
        padding: 0 1.5rem;
    }

    .product-card, 
    .product-card.featured, 
    .product-card.p-invisible {
        grid-column: span 1 !important;
        flex-direction: column !important;
        padding: 30px 20px;
        text-align: center;
        gap: 20px !important;
    }

    .p-info-compact {
        flex-direction: column;
        gap: 12px;
        margin: 0;
    }

    .p-info-compact h3 {
        white-space: normal;
    }

    .p-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto;
    }

    .product-card img {
        width: 260px;
        height: auto;
        margin: 0 auto 24px;
    }

    /* --- FAQ & Common --- */
    section {
        padding: 60px 1.5rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    /* --- Address Section Mobile --- */
    .addr-sec {
        padding: 60px 1.5rem;
    }

    .addr-inner {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .addr-title {
        font-size: 2.2rem !important;
        margin-bottom: 24px !important;
    }

    .addr-row {
        justify-content: center !important;
        margin-bottom: 20px !important;
    }

    /* --- Footer Mobile --- */
    .footer {
        padding: 40px 1.5rem;
    }

    .footer-inner {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 24px !important;
        width: 100% !important;
    }

    .footer-links {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .footer-developed {
        justify-content: center !important;
    }

    /* --- FAB Mobile --- */
    .floating-cta {
        bottom: 100px;
        right: 20px;
        width: 54px;
        height: 54px;
        padding: 0;
    }
    
    .fab-bubble {
        display: none; /* Hide bubble on mobile for space */
    }
}

/* --- Price Section Footer (v1 Restore) --- */
.price-footer {
    max-width: 1200px;
    margin: 60px auto 0;
}

.info-box {
    background: #f1f5f9;
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    border-left: 8px solid var(--border);
    margin-bottom: 40px;
}

.info-box strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.info-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.credits-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.credits-row > span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.bank-logos {
    display: flex;
    gap: 16px;
}

.bank-pill {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.terms {
    font-style: italic;
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .credits-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* REVEAL ANIMATIONS DELAYS */

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

