   :root {
    --top-bar-h: 38px;
    --header-total: calc(var(--top-bar-h) + var(--nav-height));
    --clr-bg: #f5f5f7; 
    --clr-bg-alt: #ffffff;
    --clr-text: #1d1d1f; 
    --clr-text-muted: #86868b;
    --clr-border: #d2d2d7;
    --clr-primary: #1d1d1f; 
    --clr-primary-hover: #434344;
    --clr-link: #0066cc; 
    --clr-link-hover: #004499;
    --clr-whatsapp: #25D366; 
    --font-apple: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 48px;
    --bottom-nav-height: 80px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-apple);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--header-total);
}
h1, h2, h3, h4 {
    color: var(--clr-text);
    font-weight: 600;
    letter-spacing: -0.04em;
    text-wrap: balance;
}
a {
    text-decoration: none;
    transition: var(--transition);
}
.container {
    width: 100%;
    max-width: 980px; 
    margin: 0 auto;
    padding: 0 22px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 9999;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--clr-text);
    display: flex;
    align-items: center;
}
.logo-location {
    font-size: 10px;
    font-weight: 500;
    color: var(--clr-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid var(--clr-border);
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 12px;
    color: var(--clr-text);
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 0.8;
}
.nav-links a:hover {
    opacity: 0.5;
}
.nav-links a.active {
    opacity: 1;
    font-weight: 500;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-phone {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text);
    letter-spacing: 0.02em;
}
.nav-phone:hover {
    color: var(--clr-link);
}
.btn-primary {
    background-color: var(--clr-primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 980px; 
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease;
}
.btn-primary:hover {
    background-color: var(--clr-primary-hover);
}
.btn-primary:active {
    transform: scale(0.96);
}
.btn-small {
    padding: 6px 14px;
    font-size: 12px;
}
.btn-link {
    color: var(--clr-link);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.011em;
    display: inline-block;
}
.btn-link:hover {
    text-decoration: underline;
}
.hero:not(.home-hero) {
    position: relative;
    min-height: calc(100vh - var(--header-total));
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 48px;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; 
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(245, 245, 247, 0.95) 0%, rgba(245, 245, 247, 0.7) 40%, rgba(245, 245, 247, 0.1) 100%);
}
.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 64px;
    line-height: 1.0625;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
}
.hero-description {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 400;
    letter-spacing: 0.009em;
    color: var(--clr-text-muted);
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom); 
}
.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    gap: 4px;
}
.nav-item svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}
.nav-item span {
    font-size: 10px;
    font-weight: 500;
}
.nav-item.active {
    color: var(--clr-text);
}
.nav-item.active svg {
    stroke-width: 2;
}
.nav-action {
    position: relative;
}
.action-circle {
    width: 56px;
    height: 56px;
    background-color: var(--clr-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 4px solid var(--clr-bg-alt);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    position: relative;
    top: -20px;
    transition: var(--transition);
}
.wp-tooltip {
    position: absolute;
    bottom: 70px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--clr-text);
    color: var(--clr-bg);
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: tooltip-fade 6s ease-in-out forwards;
    animation-delay: 1s;
    pointer-events: none; 
}
.wp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--clr-text) transparent transparent transparent;
}
@keyframes tooltip-fade {
    0% { opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(10px); }
    10% { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    80% { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-10px); }
}
.action-circle svg {
    width: 28px;
    height: 28px;
}
.section {
    padding: 120px 0;
    scroll-margin-top: calc(var(--header-total) + 20px);
}
.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 48px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}
.section-header p {
    font-size: 21px;
    color: var(--clr-text-muted);
    max-width: 600px;
}
.text-center {
    text-align: center;
}
.text-center p {
    margin-left: auto;
    margin-right: auto;
}
.bg-white { background-color: #ffffff; }
.bg-light { background-color: #f5f5f7; }
.bg-dark { background-color: #1d1d1f; color: #f5f5f7; }
.text-white { color: #ffffff !important; }
.text-gray { color: #86868b !important; }
.bg-whatsapp { background-color: var(--clr-whatsapp) !important; color: #fff !important; border: none; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--clr-bg-alt);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 600;
    color: var(--clr-text);
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bento-card {
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.bento-card:hover {
    transform: scale(0.98);
}
.bento-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.bento-large .bento-img-wrapper {
    height: 240px;
}
.bento-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bento-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}
.bento-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}
.bento-content p {
    font-size: 17px;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}
.mt-auto { margin-top: auto; }
.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.journey-step {
    padding: 32px 24px;
    background-color: var(--clr-bg-alt);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.step-number {
    font-size: 80px;
    font-weight: 700;
    color: rgba(0,0,0,0.03);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
    letter-spacing: -0.05em;
}
.journey-step h4 {
    font-size: 21px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.journey-step p {
    font-size: 15px;
    color: var(--clr-text-muted);
    position: relative;
    z-index: 1;
}
.trusted-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--clr-border);
}
.trusted-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.reference-logo {
    height: 36px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition);
}
.reference-logo:hover {
    opacity: 0.8;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    padding: 40px;
    background-color: var(--clr-bg-alt);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}
.review-stars {
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.review-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--clr-text);
    margin-bottom: 30px;
    flex: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.avatar {
    width: 48px;
    height: 48px;
    background-color: var(--clr-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-text);
}
.author-info strong {
    display: block;
    font-size: 16px;
    color: var(--clr-text);
}
.author-info span {
    font-size: 14px;
    color: var(--clr-text-muted);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: var(--clr-bg);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}
.faq-item summary {
    padding: 24px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
    user-select: none;
    -webkit-user-select: none;
}
.faq-item summary:focus-visible {
    outline: 2px solid var(--clr-link);
    outline-offset: 4px;
    border-radius: 12px;
}
.faq-item summary:focus:not(:focus-visible) {
    outline: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--clr-text-muted);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-content {
    padding: 0 24px 24px 24px;
}
.faq-content p {
    font-size: 17px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}
.footer {
    background-color: var(--clr-bg-alt);
    padding: 80px 0 100px 0; 
    border-top: 1px solid var(--clr-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-desc {
    margin-top: 16px;
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 300px;
}
.footer h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--clr-text);
}
.footer-links a, .footer-contact p, .footer-contact a {
    display: block;
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--clr-link);
}
.footer-phone {
    font-size: 19px !important;
    font-weight: 600;
    color: var(--clr-text) !important;
}
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 14px;
    color: var(--clr-text-muted);
}
@media (max-width: 768px) {
    .navbar .nav-links,
    .navbar .nav-actions {
        display: none;
    }
    .logo {
        margin: 0 auto; 
    }
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px));
    }
    .hero:not(.home-hero) {
        padding-top: 32px;
        padding-bottom: 40px;
    }
    .hero-title {
        font-size: 44px;
    }
    .hero-description {
        font-size: 19px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    .hero-buttons .btn-primary {
        width: 100%;
        max-width: 300px;
    }
    .image-frame {
        border-radius: 0; 
        box-shadow: none;
    }
    .section { padding: 80px 0; }
    .section-header h2 { font-size: 36px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large { grid-column: span 1; grid-row: span 1; }
    .bento-content { padding: 24px; }
    .journey-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 40px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { padding: 28px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer { 
        padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom) + 40px); 
    }
}
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .journey-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    *, .bento-card, .wp-tooltip, .btn-primary { 
        animation: none !important; 
        transition: none !important; 
    }
}
