* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1f2937;
    background: #f4f7fc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: white;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-weight: 800;
    color: #0d6efd;
    font-size: 24px;
    text-decoration: none;
}

nav a {
    color: #1f2937;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

.btn-call {
    background: #0d6efd;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: linear-gradient(120deg, #0d6efd, #2f80ed);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.hero .btn {
    background: white;
    color: #0d6efd;
    margin: 8px;
}

.btn.secondary {
    background: #111827;
    color: white;
}

.btn.whatsapp {
    background: #25d366;
    color: white;
}

.section {
    padding: 70px 0;
}

.bg-light {
    background: white;
}

.section h2,
.page-title h1 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 35px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.card h3 {
    color: #0d6efd;
}

.page-title {
    background: linear-gradient(120deg, #0d6efd, #2f80ed);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-title p {
    font-size: 20px;
}

.form-box,
.contact-box {
    background: white;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    font-size: 16px;
}

form textarea {
    min-height: 150px;
}

.footer {
    background: #0d6efd;
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.copyright {
    text-align: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .nav,
    .footer-grid {
        flex-direction: column;
        display: block;
        text-align: center;
    }

    nav {
        margin: 15px 0;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 34px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}
.hero-premium {
    min-height: 680px;
    background: linear-gradient(120deg, rgba(13,110,253,.95), rgba(47,128,237,.88)),
                url('/images/demenagement-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 950px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,.18);
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-premium h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-premium p {
    font-size: 23px;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-main,
.btn-dark,
.btn-whatsapp {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
}

.btn-main {
    background: #0d6efd;
    color: white;
}

.hero-premium .btn-main,
.cta-section .btn-main {
    background: white;
    color: #0d6efd;
}

.btn-dark {
    background: #111827;
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.stats-section {
    margin-top: -55px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-box {
    background: white;
    border-radius: 22px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .12);
}

.stat-box h3 {
    color: #0d6efd;
    font-size: 38px;
    font-weight: 900;
    margin: 0;
}

.stat-box p {
    margin: 8px 0 0;
    color: #334155;
    font-weight: 600;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -15px auto 35px;
    color: #64748b;
    font-size: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card .icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.service-card h3 {
    color: #0d6efd;
    margin-bottom: 12px;
}

.trust-section {
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 35px;
    align-items: center;
}

.trust-section .badge {
    background: #e8f1ff;
    color: #0d6efd;
}

.trust-section h2 {
    text-align: left;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.check-list li {
    margin-bottom: 12px;
    font-weight: 600;
}

.check-list li::before {
    content: "✔";
    color: #0d6efd;
    margin-right: 10px;
}

.trust-card {
    background: linear-gradient(145deg, #0d6efd, #2f80ed);
    color: white;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 20px 45px rgba(13, 110, 253, .28);
}

.trust-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-section {
    background: linear-gradient(120deg, #0d6efd, #2f80ed);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 20px;
}

@media (max-width: 900px) {
    .hero-premium h1 {
        font-size: 42px;
    }

    .hero-premium p {
        font-size: 18px;
    }

    .stats-grid,
    .service-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        margin-top: 25px;
    }

    .trust-section h2 {
        text-align: center;
    }
}