body {
    margin: 0;
    font-family:'Inter',-apple-system,BlinkMacSystemFont,Roboto,'Helvetica Neue',Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
    background: white;
    position: relative;
    overflow-x: hidden;
}

/* ===== BACKGROUND DIAGONAL ===== */

.background-shapes::after {
    content: "";
    position: fixed;
    width: 120%;
    height: 300px;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    transform: rotate(-8deg);
    left: -10%;
    z-index: -1;
}


.background-shapes::after {
    bottom: -150px;
    transform: rotate(8deg);
}

/* ===== HERO ===== */

.hero {
    text-align: center;
    padding: 60px 20px 30px;
}

.logo {
    width: 250px;
}

.hero h1 {
    color: #0d47a1;
    margin: 10px 0;
    font-size: 28px;
}

.headline {
    max-width: 480px;
    margin: auto;
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

/* ===== CARD PRINCIPAL ===== */

.main-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    max-width: 460px;
    margin: 0 auto;
    border-radius: 22px;
    padding: 10px 30px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ===== BOTÕES ===== */

.cta-buttons {
    margin-bottom: 30px;
}

.btn {
    padding: 16px;
    margin: 14px 0;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    color: white;
    transition: 0.15s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.btn-call {
    background: linear-gradient(135deg, #1565c0, #1976d2);
}

.btn-whats {
    background: linear-gradient(135deg, #1ebe5d, #25d366);
}

.btn-map {
    background: linear-gradient(135deg, #0d47a1, #1565c0);
}

/* ===== DETALHES ===== */

.details {
    margin-top: 25px;
}

.detail-item {
    margin-bottom: 18px;
}

.detail-item h2 {
    color: #0d47a1;
    font-size: 1.17em;
    margin-bottom: 6px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.detail-item h2 > i {
    color: red;
}

.detail-item p {
    color: #555;
    font-size: 15px;
}

/* ===== FOOTER ===== */

.footer {
    text-align: center;
    font-size: 13px;
    color: #fff;
    padding: 20px;
}