/* ======================================================
   KURODA ATACAREJO
   Style v2.2 - Corrigido contra interferência de Flex externo
   ====================================================== */

/* =======================
   RESET
======================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

iframe {
    border: 0;
    display: block;
    width: 100%;
}

/* =======================
   VARIÁVEIS
======================= */

:root {
    --primary: #210099;
    --secondary: #004b9c;
    --accent: #e30613;

    --white: #ffffff;
    --bg: #f6f7fb;
    --text: #444;
    --title: #222;

    --radius: 18px;

    --shadow-sm: 0 8px 18px rgba(0, 0, 0, .05);
    --shadow: 0 18px 45px rgba(0, 0, 0, .08);

    --transition: .35s ease;
    --container: 1280px;
}

/* =======================
   BASE & OVERRIDE CONTRA OTRO CSS (FLEX)
======================= */

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Anula display flex externo no container */
.container10 {
    display: block !important;
    width: min(94%, var(--container)) !important;
    margin: 0 auto !important;
}

/* =======================
   HERO
======================= */

.hero10 {
    display: block !important;
    background: linear-gradient(135deg, var(--primary), #3015d6);
    color: white;
    text-align: center;
    padding: 0 0 50px;
    width: 100% !important;
    z-index: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-size: .85rem;
}

.hero10 h1 {
    margin-top: 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.hero10 p {
    margin: 18px auto 35px;
    max-width: 650px;
    opacity: .9;
    font-size: 1.05rem;
}

/* =======================
   FOTO (RESPONSIVA)
======================= */

.hero-image {
    overflow: hidden;
    border-radius: 24px;
    background: white;
    padding: 6px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .20);
    animation: fadeUp .7s ease;
    width: 100%;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* =======================
   GRID DE CARDS (FORÇADO 3 COLUNAS EM DESKTOP)
======================= */

.cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    margin-top: 50px;
    width: 100% !important;
    position: relative;
    z-index: 10;
}

/* =======================
   CARD
======================= */

.card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--accent);
    animation: fadeUp .7s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.card h2 {
    color: var(--secondary);
    margin: 15px 0;
    font-size: 1.3rem;
}

.card p,
.card li,
.card address {
    color: #555;
    font-style: normal;
}

.card ul li {
    margin-bottom: 8px;
}

.card ul li a {
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
}

.card ul li a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(33, 0, 153, .08);
    color: var(--primary);
    font-size: 1.5rem;
}

/* =======================
   BOTÃO
======================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 13px 24px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
    background: #c9000d;
}

/* =======================
   MAPA
======================= */

.map-section10 {
    margin: 55px 0 70px;
    width: 100%;
}

.map10 {
    overflow: hidden;
    border-radius: var(--radius);
    background: white;
    padding: 12px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.map10 iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

/* =======================
   ANIMAÇÕES
======================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =======================
   RESPONSIVO
======================= */

/* Notebooks / Tablets */
@media (max-width: 992px) {
    .cards {
        gap: 20px !important;
    }
    .hero10 {
        padding: 40px 0 100px;
    }
    .map10 iframe {
        height: 420px;
    }
}

/* Tablets Médios */
@media (max-width: 820px) {
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    }
}

/* Celulares */
@media (max-width: 600px) {
    .cards {
        grid-template-columns: 1fr !important; /* Passa para 1 coluna no celular */
        margin-top: 30px;
        gap: 20px !important;
    }
    .hero10 {
        padding: 30px 0 80px;
    }
    .badge {
        font-size: .72rem;
        padding: 8px 18px;
    }
    .hero10 h1 {
        font-size: 1.8rem;
    }
    .hero10 p {
        font-size: .95rem;
    }
    .card {
        padding: 22px;
    }
    .icon {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }
    .map10 iframe {
        height: 300px;
    }
}