@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;700;900&display=swap');

:root {
    --primary: #fe5516;
    --primary-hover: #e44a10;
    --secondary: #e8d9bb;
    --accent: #fe5516;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f5f5dc;
    --glass: rgba(232, 217, 187, 0.4);
    --glass-border: rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

/* ─── Utilities ─────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(0.78rem, 1.5vw, 0.9rem);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(254, 85, 22, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

/* ─── Navbar ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(245, 245, 220, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(254, 85, 22, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 1rem;
}

.nav-cta { flex-shrink: 0; }

@media (max-width: 480px) {
    .nav-cta { display: none; }
}

.logo {
    font-size: clamp(0.85rem, 2.2vw, 1.2rem);
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    z-index: 1050;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

@media (max-width: 400px) {
    .logo { font-size: 0.75rem; }
}

.logo span { color: var(--text-dark); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-cta-mobile { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1200;
    flex-shrink: 0;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    pointer-events: none;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-toggle.open {
    position: fixed;
    top: 1.2rem;
    right: clamp(1rem, 4vw, 1.2rem);
    z-index: 1200;
    background: rgba(245, 245, 220, 0.95);
    border-radius: 8px;
    padding: 8px;
}

.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(245, 245, 220, 0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1100;
    padding: 6rem 2rem 4rem;
    overflow-y: auto;
}

.nav-links.mobile-open a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 0.4rem 1.2rem;
    border-radius: 12px;
}

.nav-links.mobile-open a:hover {
    color: var(--primary);
    background: rgba(254, 85, 22, 0.08);
}

.nav-links.mobile-open .nav-cta-mobile {
    display: block !important;
    background: var(--primary);
    color: #ffffff !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.4rem;
    margin-top: 1rem;
    box-shadow: 0 10px 20px rgba(254, 85, 22, 0.2);
    text-align: center;
}

.nav-links.mobile-open .nav-cta-mobile:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    padding: clamp(80px, 12vw, 120px) 0;
    background: radial-gradient(circle at top right, rgba(254, 85, 22, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(232, 217, 187, 0.4), transparent);
}

.hero-content {
    max-width: 750px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero h1 {
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.hero h1 span { color: var(--primary); }

.hero p {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.8;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.badges { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.badge-item i { color: var(--primary); }

/* ─── Services ───────────────────────────────────────────── */
.services { padding: clamp(60px, 10vw, 100px) 0; }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
}

.section-header h2 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 1rem; color: var(--text-dark); }

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: clamp(1.8rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) { animation-delay: 0.3s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4) { animation-delay: 0.6s; }
.service-card:nth-child(5) { animation-delay: 0.7s; }
.service-card:nth-child(6) { animation-delay: 0.8s; }

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(254, 85, 22, 0.12);
}

.service-card i { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--primary); margin-bottom: 1.5rem; }
.service-card h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 1rem; color: var(--text-dark); }
.service-card p { color: var(--text-muted); line-height: 1.7; font-size: clamp(0.9rem, 1.8vw, 1.05rem); }

/* ─── Emergency Banner ───────────────────────────────────── */
.emergency-banner {
    background: var(--primary);
    color: #ffffff;
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    text-align: center;
    margin: clamp(40px, 8vw, 80px) 0;
}

.emergency-banner h2 { font-size: clamp(1.4rem, 4vw, 2.5rem); margin-bottom: 1rem; }

.phone-link {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    display: block;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    word-break: break-word;
}

.phone-link:hover { transform: scale(1.05); }

/* ─── Contact ────────────────────────────────────────────── */
.contact { padding: clamp(60px, 10vw, 100px) 0; }
.contact-flex { display: flex; gap: 4rem; align-items: center; }
.contact-info { flex: 1; }

.contact-form {
    flex: 1;
    background: #ffffff;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
    background: #0f172a;
    color: #f8fafc;
    padding: 80px 0 30px;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-logo span { color: #ffffff; }
.footer-col p { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }

.footer-col ul li a { color: #94a3b8; text-decoration: none; transition: var(--transition); font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-distritos-grid ul li a { font-size: 0.85rem !important; }

.footer-contact-item { display: flex; gap: 15px; margin-bottom: 1.2rem; color: #94a3b8; font-size: 0.95rem; }
.footer-contact-item i { color: var(--primary); margin-top: 5px; }

.footer-distritos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: #64748b; text-decoration: none; transition: var(--transition); }
.footer-legal a:hover { color: var(--primary); }

.social-links { display: flex; gap: 1rem; }

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover { background: var(--primary); transform: translateY(-3px); }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── Page Header ────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-light) 100%);
    padding: clamp(50px, 8vw, 80px) 0;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 { font-size: clamp(2rem, 6vw, 3.5rem); margin-bottom: 1rem; }
.page-header h1 span { color: var(--primary); }
.page-header p { color: var(--text-muted); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 700px; margin: 0 auto; }

/* ─── Services Detail ────────────────────────────────────── */
.services-detail { padding: clamp(50px, 8vw, 100px) 0; }

.service-item {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: clamp(50px, 8vw, 80px);
}

.service-item.reverse { flex-direction: row-reverse; }
.service-text { flex: 1; min-width: 0; }

.service-text h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-text h2 i { color: var(--primary); }
.service-text ul { list-style: none; margin-top: 1.2rem; }
.service-text li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.service-text li i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }

.service-image-placeholder {
    flex: 1;
    min-width: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-image-placeholder img {
    width: 100%;
    height: clamp(220px, 30vw, 400px);
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.service-image-placeholder:hover img { transform: scale(1.05); }

/* ─── About ──────────────────────────────────────────────── */
.about-content { padding: clamp(50px, 8vw, 100px) 0; }

.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: 1.5rem; line-height: 1.2; }
.about-text p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: clamp(0.95rem, 1.8vw, 1.15rem); line-height: 1.7; }

.about-seo { padding: clamp(60px, 10vw, 120px) 0; background: linear-gradient(to bottom, #ffffff, var(--bg-light)); }

.trust-box {
    margin-top: 3rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.trust-box h4 { font-size: clamp(1rem, 2vw, 1.3rem); margin-bottom: 1rem; color: var(--text-dark); }
.trust-box p { font-size: clamp(0.88rem, 1.5vw, 0.95rem); line-height: 1.7; color: var(--text-muted); margin: 0; }

.values-list { margin-top: 2.5rem; }
.value-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }

.value-item i {
    font-size: 1.8rem;
    color: var(--primary);
    background: #ffffff;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.value-item h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }

.info-card-premium {
    background: #ffffff;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 35px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    text-align: center;
    transition: var(--transition);
}

.info-card-premium:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 30px 60px rgba(254, 85, 22, 0.08); }
.info-card-premium h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 1.2rem; }
.info-card-premium p { color: var(--text-muted); line-height: 1.7; }
.info-card-premium i { font-size: clamp(2rem, 5vw, 3rem); color: var(--primary); margin-bottom: 2rem; display: block; }

.about-image { width: 100%; height: clamp(280px, 35vw, 400px); border-radius: 40px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.about-image iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.2) contrast(1.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.mission-vision { padding: clamp(60px, 10vw, 100px) 0; background: #ffffff; }

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 3rem;
}

.team-section { padding: clamp(60px, 10vw, 100px) 0; background: var(--bg-light); }
.commitment-section { padding: clamp(60px, 10vw, 120px) 0; background: #ffffff; text-align: center; }
.commitment-content { max-width: 850px; margin: 0 auto; }
.commitment-content i { font-size: clamp(2.5rem, 6vw, 4rem); color: var(--primary); margin-bottom: 2.5rem; }
.commitment-content h2 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 2rem; }
.commitment-content p { font-size: clamp(1rem, 2.2vw, 1.3rem); line-height: 1.8; color: var(--text-muted); font-style: italic; }
.commitment-cta { margin-top: 3.5rem; }

/* ─── Stats ──────────────────────────────────────────────── */
.stats-section { background: var(--text-dark); padding: clamp(50px, 8vw, 80px) 0; color: #ffffff; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 2.5rem; }
.stat-box .stat-number { display: block; font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 900; color: var(--primary); font-family: 'Outfit', sans-serif; }
.stat-box .stat-label { text-transform: uppercase; letter-spacing: 2px; font-size: clamp(0.7rem, 1.2vw, 0.8rem); color: rgba(255,255,255,0.6); }

/* ─── Contact Page ───────────────────────────────────────── */
.contact-page { padding: clamp(50px, 8vw, 100px) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2rem, 4vw, 4rem); }

.contact-card {
    background: #ffffff;
    padding: clamp(1.2rem, 2.5vw, 2rem);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.contact-card i { font-size: 1.5rem; color: var(--primary); margin-bottom: 1rem; }
.contact-card h3 { font-size: clamp(0.95rem, 1.8vw, 1.1rem); margin-bottom: 0.5rem; }
.contact-card p { font-size: clamp(0.85rem, 1.5vw, 0.9rem); color: var(--text-muted); margin-bottom: 0.5rem; }
.contact-card a { color: var(--text-dark); text-decoration: none; font-weight: 600; font-size: clamp(0.95rem, 2vw, 1.1rem); }

.contact-form-premium {
    background: #ffffff;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.contact-form-premium h2 { margin-bottom: 2rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.form-row { display: flex; gap: 1.5rem; }
.form-row .form-group { flex: 1; }

.contact-form-premium select {
    width: 100%;
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
}

/* ─── Map ────────────────────────────────────────────────── */
.map-section { padding: 0 0 clamp(50px, 8vw, 100px) 0; }

.map-placeholder {
    width: 100%;
    height: clamp(280px, 40vw, 450px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--glass-border);
}

.map-placeholder iframe { width: 100%; height: 100%; filter: grayscale(0.2) contrast(1.1); }

/* ─── Distritos ──────────────────────────────────────────── */
.distritos-section { padding: clamp(50px, 8vw, 100px) 0; }
.distritos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.5rem; }

.distrito-card {
    background: #ffffff;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
    color: inherit;
}

.distrito-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(254, 85, 22, 0.08); border-color: var(--primary); }

.distrito-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.distrito-card:hover .distrito-icon { background: var(--primary); color: #ffffff; transform: rotate(15deg); }
.distrito-card h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 0.8rem; color: var(--text-dark); }
.distrito-card p { color: var(--text-muted); font-size: clamp(0.85rem, 1.5vw, 0.95rem); }

.distrito-card.featured { border-color: var(--primary); background: linear-gradient(to bottom, #ffffff, var(--bg-light)); position: relative; }

.distrito-card.featured::after {
    content: 'Principal';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ─── Check List ─────────────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.check-list li { margin-bottom: 0.8rem; display: flex; align-items: flex-start; font-size: clamp(0.95rem, 1.8vw, 1.05rem); gap: 10px; }
.check-list i { color: var(--primary); margin-right: 4px; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ─── Location Detail ────────────────────────────────────── */
.location-detail { padding: clamp(50px, 8vw, 100px) 0; }
.services-list-mini { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.service-card-mini {
    background: #ffffff;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    flex: 1;
    min-width: min(140px, 100%);
    text-align: center;
    transition: var(--transition);
}

.service-card-mini:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-card-mini i { font-size: 1.6rem; color: var(--primary); margin-bottom: 0.8rem; display: block; }
.service-card-mini h4 { font-size: clamp(0.8rem, 1.5vw, 0.9rem); color: var(--text-dark); }

/* ─── CTA ────────────────────────────────────────────────── */
.cta-box {
    background: linear-gradient(135deg, var(--text-dark) 0%, #334155 100%);
    padding: clamp(2.5rem, 6vw, 4rem);
    border-radius: clamp(20px, 4vw, 40px);
    text-align: center;
    color: #ffffff;
}

.cta-box h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-box p { margin-bottom: 2rem; opacity: 0.8; max-width: 600px; margin-left: auto; margin-right: auto; font-size: clamp(0.95rem, 1.8vw, 1.1rem); }

.cta-section { padding: clamp(60px, 10vw, 100px) 0; background: var(--secondary); text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-section p { margin-bottom: 2.5rem; color: var(--text-muted); max-width: 600px; margin-left: auto; margin-right: auto; font-size: clamp(0.95rem, 1.8vw, 1.1rem); }

/* ─── Extra Components ───────────────────────────────────── */
.top-bar { background: var(--text-dark); color: #ffffff; padding: 8px 0; font-size: 0.85rem; font-weight: 500; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-info { display: flex; gap: 2rem; }
.top-bar-info span { display: flex; align-items: center; gap: 8px; }
.top-bar-info i { color: var(--primary); }
.top-bar-social { display: flex; gap: 1.2rem; }
.top-bar-social a { color: #ffffff; transition: var(--transition); }
.top-bar-social a:hover { color: var(--primary); }

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); background-color: #128c7e; }
.whatsapp-float i { margin-top: 2px; }

.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--text-dark); transform: translateY(-5px); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
    animation: slideUp 0.5s ease forwards;
}

.cookie-banner .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.cookie-text { font-size: 0.9rem; color: var(--text-muted); }
.cookie-text a { color: var(--primary); font-weight: 600; }
.cookie-btns { display: flex; gap: 1rem; }

@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section { padding: 100px 0; background: #ffffff; }
.faq-container { max-width: 800px; margin: 4rem auto 0; }
.faq-item { background: var(--bg-light); border-radius: 15px; margin-bottom: 1.2rem; overflow: hidden; border: 1px solid var(--glass-border); }

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover { background: rgba(254, 85, 22, 0.05); }
.faq-question i { transition: transform 0.3s ease; color: var(--primary); }
.faq-item.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: #ffffff; }
.faq-answer p { padding: 0 2rem 1.5rem; color: var(--text-muted); font-size: 1rem; }

.review-stars { display: flex; gap: 5px; color: #ffb800; margin-bottom: 0.5rem; }
.trust-badge-hero { display: flex; align-items: center; gap: 15px; margin-top: 1.5rem; }
.trust-badge-hero img { height: 40px; filter: grayscale(1) opacity(0.5); }

.mobile-call-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    z-index: 2001;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ─── About Extra ────────────────────────────────────────── */
.section-tag {
    display: inline-block;
    background: rgba(254, 85, 22, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-intro { padding: 100px 0; }
.intro-highlights { display: flex; gap: 2rem; margin-top: 2.5rem; }
.highlight-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.highlight-item i { color: var(--primary); }
.about-image-stack { position: relative; padding-bottom: 50px; padding-right: 50px; }
.image-main img { width: 100%; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.image-overlay { position: absolute; bottom: 0; right: 0; }

.overlay-box { background: var(--primary); color: #ffffff; padding: 2rem; border-radius: 20px; text-align: center; box-shadow: 0 20px 40px rgba(254, 85, 22, 0.3); }
.overlay-box .number { display: block; font-size: 2.5rem; font-weight: 900; font-family: 'Outfit', sans-serif; }
.overlay-box .text { font-size: 0.85rem; font-weight: 600; }

.values-premium { padding: 100px 0; background: #ffffff; }
.values-grid-premium { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; margin-top: 4rem; }
.value-card-premium { padding: 3rem 2rem; background: var(--bg-light); border-radius: 30px; transition: var(--transition); }
.value-card-premium:hover { transform: translateY(-10px); background: #ffffff; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

.icon-wrap { width: 60px; height: 60px; background: #ffffff; display: flex; align-items: center; justify-content: center; border-radius: 18px; color: var(--primary); font-size: 1.5rem; margin-bottom: 2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.value-card-premium h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.value-card-premium p { font-size: 0.95rem; color: var(--text-muted); }

.expertise-deep { padding: 100px 0; }
.expertise-flex { display: flex; align-items: center; gap: 5rem; }
.expertise-image { flex: 1; }
.expertise-image img { width: 100%; border-radius: 30px; }
.expertise-content { flex: 1; }
.expertise-list { margin-top: 3rem; }
.exp-item { margin-bottom: 2rem; }
.exp-item h4 { color: var(--primary); margin-bottom: 0.5rem; }

.local-pride { padding: 80px 0; }

.pride-box { background: var(--text-dark); color: #ffffff; padding: 5rem; border-radius: 40px; display: flex; justify-content: space-between; align-items: center; gap: 4rem; }

.neighborhoods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.neighborhoods span { background: rgba(255,255,255,0.1); padding: 6px 15px; border-radius: 50px; font-size: 0.85rem; transition: var(--transition); }
.neighborhoods span:hover { background: var(--primary); }

.pride-stat { text-align: center; min-width: 200px; }
.pride-stat .big-number { display: block; font-size: 5rem; font-weight: 900; color: var(--primary); font-family: 'Outfit', sans-serif; }
.pride-stat .desc { font-size: 1.1rem; font-weight: 600; }

/* ─── Blog ───────────────────────────────────────────────── */
.blog-section { padding: 100px 0; background: #f8fafc; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; }
.blog-card { background: #ffffff; border-radius: 30px; overflow: hidden; border: 1px solid var(--glass-border); transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-color: var(--primary); }
.blog-image { position: relative; height: 240px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-image img { transform: scale(1.1); }

.blog-category { position: absolute; top: 20px; left: 20px; background: var(--primary); color: #ffffff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }

.blog-content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; font-size: 0.85rem; color: var(--text-muted); }
.blog-meta i { color: var(--primary); margin-right: 5px; }
.blog-card h3 { font-size: 1.4rem; margin-bottom: 1rem; line-height: 1.4; color: var(--text-dark); }
.blog-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; flex: 1; }

.read-more { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.read-more:hover { gap: 12px; }

/* ─── Post Detail ────────────────────────────────────────── */
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.post-detail { padding: 80px 0; background: #ffffff; }
.post-header { text-align: center; margin-bottom: 3rem; }

.post-category { display: inline-block; background: var(--primary); color: #ffffff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1.5rem; }

.post-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; line-height: 1.2; }

.post-image-main { width: 100%; border-radius: 30px; overflow: hidden; margin-bottom: 3rem; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.post-image-main img { width: 100%; height: auto; display: block; }

/* ════════════════════════════════════════
   POST CONTENT — FIX PRINCIPAL
   ════════════════════════════════════════ */
.post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: left;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 3.5rem 0 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary);
}

.post-content h2 i {
    color: var(--primary);
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    list-style: none;
}

.post-content li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.post-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.post-highlight { background: var(--bg-light); border-left: 5px solid var(--primary); padding: 2rem; margin: 3rem 0; border-radius: 0 20px 20px 0; font-style: italic; }

/* ─── Blog Meta ──────────────────────────────────────────── */
.reading-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reading-time-badge i { color: var(--primary); }
.meta-info { display: flex; gap: 1.5rem; font-size: 0.9rem; color: var(--text-muted); }
.meta-info i { color: var(--primary); margin-right: 4px; }

/* ─── Article Layout ─────────────────────────────────────── */
.article-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
}

.article-sidebar {
    position: sticky;
    top: 120px;
}

.article-toc {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.article-toc h4 { font-size: 0.8rem; margin-bottom: 1.5rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }
.article-toc ul { list-style: none; padding: 0; margin: 0; }
.article-toc li { margin-bottom: 0.7rem; }
.article-toc a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); display: block; line-height: 1.4; padding: 4px 8px; border-radius: 6px; }
.article-toc a:hover { color: var(--primary); background: rgba(254, 85, 22, 0.05); padding-left: 12px; }

.article-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    text-align: left;
}

/* ─── Pro Tip ────────────────────────────────────────────── */
.pro-tip { background: linear-gradient(135deg, #fff 0%, #fffbf0 100%); border: 2px dashed #fcd34d; padding: 2rem; border-radius: 24px; margin: 3rem 0; display: flex; gap: 1.5rem; align-items: flex-start; }

.pro-tip i { font-size: 2rem; color: #f59e0b; background: #fffbeb; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 15px; flex-shrink: 0; }
.pro-tip h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #92400e; }
.pro-tip p { margin: 0; font-size: 1rem; color: #b45309; }

/* ─── FAQ Simple ─────────────────────────────────────────── */
.faq-simple { background: #ffffff; border-radius: 30px; padding: 3rem; border: 1px solid var(--glass-border); margin-top: 4rem; }
.faq-simple p { margin-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 1.5rem; }
.faq-simple p:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-simple strong { display: block; color: var(--text-dark); font-size: 1.1rem; margin-bottom: 0.8rem; }

/* ─── Post Footer ────────────────────────────────────────── */
.post-footer { margin-top: 5rem; padding: 3rem 0; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2.5rem; }
.post-share { display: flex; align-items: center; gap: 1.5rem; }
.post-share span { font-weight: 700; color: var(--text-dark); }

.post-share a { width: 44px; height: 44px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--text-dark); text-decoration: none; transition: var(--transition); }
.post-share a:hover { background: var(--primary); color: #ffffff; transform: translateY(-3px); }
.post-share a i { font-size: 1.1rem; line-height: 1; }

.btn-text { color: var(--primary); text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.btn-text:hover { gap: 12px; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .article-layout { grid-template-columns: 1fr; gap: 2rem; }
    .article-sidebar { position: static; }
}

@media (max-width: 992px) {
    .expertise-flex, .pride-box { flex-direction: column; gap: 3rem; }
}

@media (max-width: 900px) {
    .service-item, .service-item.reverse { flex-direction: column; }
    .service-image-placeholder { width: 100%; }
    .contact-flex { flex-direction: column; gap: 2.5rem; }
    .contact-info, .contact-form { width: 100%; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex !important; }
    .nav-links { display: none !important; }
    .nav-links.mobile-open { display: flex !important; }

    .hero { text-align: center; min-height: auto; padding: 100px 0 60px; }
    .hero-content { max-width: 100%; }
    .hero-btns { justify-content: center; }
    .badges { justify-content: center; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-stack { padding: 0; margin-top: 3rem; order: 2; }
    .about-text { order: 1; }
    .image-overlay { position: absolute; bottom: -20px; right: 20px; }
    .overlay-box { padding: 1.2rem; }
    .overlay-box .number { font-size: 2rem; }
    .about-image { height: 260px; border-radius: 24px; }
    .service-item, .service-item.reverse { flex-direction: column; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .stats-flex { gap: 2rem; }
    .map-placeholder { height: 280px; border-radius: 20px; }
    .services-list-mini { justify-content: center; }
    .blog-grid { grid-template-columns: 1fr; }
    .post-detail { padding: 40px 0; }
    .post-footer { flex-direction: column; text-align: center; }
    footer { padding: 60px 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-distritos-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .top-bar { display: none; }
    .whatsapp-float { bottom: 80px; }
    .scroll-top { bottom: 155px; }
    footer { padding-bottom: 100px; }
    .mobile-call-btn { display: flex; }
    .cookie-banner .container { flex-direction: column; text-align: center; }
    .pride-box { padding: 3rem 2rem; }
    .pride-stat .big-number { font-size: 3.5rem; }
}

@media (max-width: 540px) {
    .hero { padding: 90px 0 50px; }
    .btn { padding: 0.8rem 1.4rem; width: 100%; text-align: center; }
    .hero-btns { flex-direction: column; align-items: center; }
    .stat-box { min-width: 120px; }
    .contact-form-premium { padding: 1.5rem; border-radius: 20px; }
    .cta-box { border-radius: 20px; }
    .service-card { border-radius: 24px; }
    .value-item { gap: 1rem; }
    .value-item i { width: 46px; height: 46px; font-size: 1.4rem; border-radius: 12px; }
    .mission-vision-grid { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .footer-distritos-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
    .logo { font-size: 1.1rem; }
    .badge-item { font-size: 0.78rem; padding: 0.4rem 0.7rem; }
    .emergency-banner { padding: 2.5rem 0; }
    .map-placeholder { height: 220px; border-radius: 16px; }
    .nav-links.mobile-open a { font-size: 1.3rem; }
    .nav-links.mobile-open .nav-cta-mobile { font-size: 1.1rem; padding: 1rem 2rem; }
}