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

:root {
    --red-dark: #821923;
    --red: #B4232D;
    --red-light: #FBECEE;
    --white: #FFFFFF;
    --gray-light: #F7F7F7;
    --gray-border: #E5E5E5;
    --text: #292929;
    --text-light: #6B6B6B;
}

html { scroll-behavior: smooth; }

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

/* HEADER */
.header {
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--red-dark);
    font-weight: 600;
}

.logo img {
    width: 58px;
    height: 48px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 2px solid var(--red-light);
}

.logo strong { color: var(--red); }

.menu {
    display: flex;
    gap: 35px;
    font-size: 15px;
}

.menu a {
    color: var(--text-light);
    transition: .2s;
}

.menu a:hover { color: var(--red); }

/* HERO */
.hero {
    background: var(--gray-light);
    padding: 90px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 80px;
}

.tag, .section-label {
    display: inline-block;
    color: var(--red);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--red-dark);
    margin-bottom: 35px;
}

.professional {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 30px;
}

.professional strong { font-size: 19px; }
.professional span { font-size: 15px; color: var(--text-light); }

.hero-image img {
    width: 100%;
    max-width: 430px;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
    border-radius: 220px 220px 10px 10px;
}

/* BOTÃO */
.btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 6px;
    background: var(--red);
    color: var(--white);
    font-size: 15px;
    font-weight: bold;
    transition: .2s;
}

.btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

/* SEÇÕES */
.section { padding: 100px 0; }

.section h2 {
    color: var(--red-dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1px;
}

/* SOBRE */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 20px;
}

/* SERVIÇOS */
.services-section { background: var(--red-light); }

.section-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.section-heading h2 { margin-bottom: 15px; }
.section-heading p { color: var(--text-light); font-size: 17px; }

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: var(--white);
    padding: 30px;
    min-height: 250px;
    border-radius: 8px;
    border: 1px solid rgba(130,25,35,.08);
    transition: .25s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.card-number {
    color: var(--red);
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 45px;
}

.card h3 {
    font-size: 20px;
    color: var(--red-dark);
    margin-bottom: 12px;
}

.card p { color: var(--text-light); font-size: 15px; }

/* CONSULTA */
.consultation {
    padding: 100px 0;
    background: var(--white);
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.consultation p {
    max-width: 550px;
    color: var(--text-light);
    margin: 25px 0 30px;
    font-size: 17px;
}

.consultation-list { border-top: 1px solid var(--gray-border); }

.consultation-list div {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-border);
    font-size: 17px;
}

.consultation-list span {
    color: var(--red);
    font-weight: bold;
    margin-right: 12px;
}

/* LOCAL */
.location { background: var(--gray-light); }
.location-content p {
    color: var(--text-light);
    font-size: 17px;
    margin-top: 18px;
}

/* CONTATO */
.contact {
    background: var(--red-dark);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.contact-content { max-width: 750px; margin: auto; }
.contact .section-label { color: #F5C9CD; }

.contact h2 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact p {
    color: #F0DDE0;
    font-size: 18px;
    margin-bottom: 30px;
}

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

.contact-phone {
    margin-top: 20px;
    color: #F5C9CD;
}

/* FOOTER */
.footer {
    padding: 35px 0;
    background: #5E1118;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: #DDBFC3;
    font-size: 13px;
}

.footer-info { text-align: right; }

/* WHATSAPP */
.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    z-index: 100;
}

/* RESPONSIVO */
@media (max-width: 850px) {
    .header { height: 70px; }
    .menu { display: none; }
    .hero { padding: 60px 0; }
    .hero-content { grid-template-columns: 1fr; gap: 45px; }
    .hero h1 { font-size: 45px; }
    .hero-image img { height: 420px; }
    .about { grid-template-columns: 1fr; gap: 35px; }
    .cards { grid-template-columns: 1fr 1fr; }
    .consultation-content { grid-template-columns: 1fr; gap: 50px; }
    .footer-content { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-info { text-align: left; }
}

@media (max-width: 550px) {
    .container { width: 88%; }
    .logo { font-size: 18px; gap: 8px; }
    .logo img { width: 48px; height: 40px; }
    .hero { padding: 55px 0; }
    .hero h1 { font-size: 40px; }
    .hero-image img { height: 380px; }
    .section { padding: 70px 0; }
    .section h2 { font-size: 34px; }
    .cards { grid-template-columns: 1fr; }
    .card { min-height: auto; }
    .consultation { padding: 70px 0; }
    .contact { padding: 75px 0; }
    .contact h2 { font-size: 38px; }
    .whatsapp { right: 15px; bottom: 15px; }
}
