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

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* fallback */
@font-face {
  font-family: 'Material Icons Round';
  font-style: normal;
  font-weight: 400;
  src:  url('../fonts/MaterialIcons-Regular.woff2') format('woff2');
}

.material-icons-round {
  font-family: 'Material Icons Round';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.material-icons-round {
    font-family: 'Material Icons Round';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f9fb;
}

/* ===== MENU MELHORADO ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(66, 78, 130, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    transition: background 0.3s, transform 0.2s;
}

header nav a:hover {
    background: rgba(13, 117, 190, 0.25);
    transform: translateY(-2px);
}

header nav .material-icons-round {
    font-size: 18px;
    color: #cbe3ff;
}

/* === BANNER === */
.banner {
    width: 100%;
    height: 70vh;
    background-image: url('https://images.unsplash.com/photo-1581578017426-ecd9f3e86a59?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(13, 117, 190, 0.6), rgba(66, 78, 130, 0.7));
}

.banner h1 {
    position: relative;
    font-size: 2.0rem;
    max-width: 850px;
    padding: 0 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    top: 125px;
}

.banner h1 a {
    display: block;
    width: 270px;
    margin: auto;
    margin-bottom: 15px;
}

.banner img {
    top: 75px;
    width: 200px;
    position: absolute;
    left: 50%;
    margin-left: -100px;
}

section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    color: #424e82;
    margin-bottom: 20px;
}

section p {
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #444;
}

/* === CORES SUAVES === */
#sobre {
    background: #f7f9fc;
}

#servicos {
    background: #f0f4fa;
}

#video {
    background: #f7f9fc;
}

#atendimento {
    background: #f0f4fa;
}

#contato {
    background: #f7f9fc;
}

/* === SERVIÇOS === */
.servicos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.servico-card {
    background: #fff;
    border-radius: 10px;
    width: 260px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(13, 117, 190, 0.3);
}

.servico-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.servico-card h3 {
    color: #0d75be;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* === SEÇÃO DE VÍDEO === */
.video-wrapper {
    position: relative;
    width: 70%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 5px 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(13, 117, 190, 0.25);
}

.video-wrapper img {
    height: 80vh;
    border: none;
    border-radius: 0.5em;
}

/* === BOTÃO WHATSAPP === */
.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 30px;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

/* === RODAPÉ === */
footer {
    background: #424e82;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .servico-card {
        width: 90%;
    }

    .banner h1 {
        top: 100px;
        font-size: 1.3rem;
    }

    .banner img {
        width: 150px;
        margin-left: -75px;
    }

    header nav {
        justify-content: space-between;
        gap: 0;
    }

    header nav a {
        font-size: 0.8em;
        padding: 14px 10px;
    }

    header nav a:hover {
        background: rgba(13, 117, 190, 0.25);
        transform: translateY(-2px);
    }

    header nav .material-icons-round {
        font-size: 18px;
        color: #cbe3ff;
    }



    nav a:nth-child(1) {
        display: none;
    }

    .video-wrapper iframe {
        height: 50vh;
    }
}