:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #d4a017;
    --accent-dark: #b8870d;
    --text: #0f172a;
    --muted: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --border: rgba(15, 23, 42, 0.08);
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 10px 26px rgba(15, 23, 42, 0.06);
    --container: 1180px;
    --success-bg: #ecfdf5;
    --success-text: #065f46;
    --error-bg: #fef2f2;
    --error-text: #991b1b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.topbar {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    padding: 10px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.logo {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.small-logo {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
}

.brand-text strong {
    display: block;
    font-size: 22px;
    color: var(--primary);
    letter-spacing: 0.2px;
}

.brand-text span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: var(--secondary);
    font-weight: 700;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: 0.2s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .25s ease;
}

nav a:hover,
nav a.active {
    color: var(--accent-dark);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: .2s ease;
}

.menu-toggle:hover {
    border-color: rgba(212,160,23,0.4);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    position: relative;
    transition: .25s ease;
    content: "";
}

.menu-toggle span::before,
.menu-toggle span::after {
    position: absolute;
    left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after { top: 0; transform: rotate(-45deg); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: .25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #f0c95f);
    color: var(--primary);
    box-shadow: 0 16px 32px rgba(212,160,23,0.24);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(15,23,42,0.95), rgba(30,41,59,0.88)),
        radial-gradient(circle at top right, rgba(212,160,23,0.24), transparent 30%);
    color: var(--white);
    padding: 84px 0 88px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 90%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.05);
    margin-bottom: 18px;
}

h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.hero p {
    margin: 0 0 26px;
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    max-width: 690px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 18px;
    backdrop-filter: blur(6px);
}

.stat strong {
    display: block;
    font-size: 28px;
    margin-bottom: 4px;
    color: var(--white);
}

.stat span {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.hero-card,
.content-card,
.contact-card,
.service-card,
.info-box,
.map-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 28px;
}

.hero-card h3 {
    margin: 0 0 12px;
    font-size: 26px;
    color: var(--primary);
}

.hero-card p { color: var(--muted); }

.hero-list,
.feature-list,
.contact-list,
.footer-links,
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-list {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.hero-list li,
.contact-list li,
.check-list li {
    background: var(--light);
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    font-weight: 700;
    color: var(--secondary);
}

main section { padding: 88px 0; }

.section-title {
    max-width: 760px;
    margin-bottom: 38px;
}

.eyebrow {
    display: inline-block;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
}

h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    color: var(--primary);
    letter-spacing: -0.8px;
}

.section-title p,
.content-card p,
.contact-card p,
.footer-about p,
.service-card p,
.info-box p,
.page-intro p,
.cta-box p {
    color: var(--muted);
    font-size: 17px;
    margin: 0;
}

.surface {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.page-hero {
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.page-intro {
    max-width: 800px;
}

.page-title {
    color: var(--primary);
    font-size: clamp(32px, 5vw, 52px);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.cards,
.service-grid,
.highlights-grid {
    display: grid;
    gap: 22px;
}

.cards,
.service-grid {
    grid-template-columns: repeat(3, 1fr);
}

.highlights-grid {
    grid-template-columns: repeat(2, 1fr);
}

.service-card,
.content-card,
.contact-card,
.info-box,
.map-card {
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(212,160,23,0.16), rgba(212,160,23,0.28));
    color: var(--accent-dark);
    font-size: 22px;
    font-weight: 800;
}

.service-card h3,
.contact-card h3,
.content-card h3,
.info-box h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 24px;
}

.feature-list,
.check-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--secondary);
    font-weight: 700;
}

.feature-list li span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212,160,23,0.18);
    color: var(--accent-dark);
    display: inline-grid;
    place-items: center;
    flex: 0 0 28px;
    font-size: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-list {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.contact-list strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
}

.alert {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-weight: 700;
}

.alert-success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid rgba(6,95,70,0.12);
}

.alert-error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid rgba(153,27,27,0.12);
}

form {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 8px;
}

label {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 15px;
    outline: none;
    transition: .2s ease;
    background: var(--white);
    font-family: inherit;
}

input:focus,
textarea:focus {
    border-color: rgba(212,160,23,0.65);
    box-shadow: 0 0 0 4px rgba(212,160,23,0.12);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.map-title {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 28px;
}

.map-frame {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 22px;
}

.cta-section {
    background: linear-gradient(135deg, #fffaf0, #ffffff);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--white), #fff9e9);
    border: 1px solid rgba(212,160,23,0.2);
    box-shadow: var(--shadow);
}

.site-footer {
    background: #0b1220;
    color: rgba(255,255,255,0.78);
    padding: 34px 0;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.footer-brand {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.footer-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 14px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a:hover { color: #fff2be; }

.copyright {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(37,211,102,0.28);
    z-index: 120;
    transition: transform .2s ease;
}

.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); }

.mt-20 { margin-top: 20px; }
.mt-14 { margin-top: 14px; }
.pt-0 { padding-top: 0 !important; }

@media (max-width: 1080px) {
    .hero-grid,
    .grid-2,
    .contact-grid,
    .footer-grid,
    .cta-box,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .navbar {
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .brand {
        width: calc(100% - 60px);
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text span {
        font-size: 12px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    nav {
        width: 100%;
        display: none;
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 10px;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 14px;
        background: var(--light);
        border: 1px solid var(--border);
        border-radius: 14px;
    }

    nav a::after {
        display: none;
    }

    .hero { padding-top: 64px; }

    .hero-stats,
    .cards,
    .service-grid {
        grid-template-columns: 1fr;
    }

    main section { padding: 72px 0; }

    .cta-box,
    .service-card,
    .content-card,
    .contact-card,
    .info-box,
    .map-card { padding: 24px; }
}
