/* ============================= */
/* RESET */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    background: #f8fafc;
    color: #333;
}

/* ============================= */
/* CONTAINER */
/* ============================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* ============================= */
/* HEADER */
/* ============================= */

header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1e3a8a;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #1e3a8a;
    padding: 10px 15px;
    font-weight: 600;
    transition: 0.3s;
}

.desktop-nav ul li a:hover {
    color: #2563eb;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero {
    background: linear-gradient(rgba(30,58,138,0.8), rgba(37,99,235,0.8)),
                url('imagens/compaqreboque.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}



/* ============================= */
/* BOTÕES PROFISSIONAIS */
/* ============================= */

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Botão Azul 3D */
.primary-btn {
    background: linear-gradient(to bottom, #2563eb, #1e3a8a);
    color: #fff;
    box-shadow: 0 6px 0 #162c6a;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 0 #162c6a;
}

.primary-btn:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #162c6a;
}

/* Botão Branco */
.secondary-btn {
    background: #ffffff;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.secondary-btn:hover {
    background: #1e3a8a;
    color: #ffffff;
}

/* ============================= */
/* SERVIÇOS */
/* ============================= */

.section-padding {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-item i {
    color: #2563eb;
    margin-bottom: 15px;
}

/* ============================= */
/* FORMULÁRIO */
/* ============================= */

.light-bg {
    background: #eef2ff;
}

#proposal-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}

.whatsapp-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* ============================= */
/* FLOATING BUTTONS */
/* ============================= */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-btn,
.phone-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-btn {
    background: #25d366;
}

.phone-btn {
    background: #1e3a8a;
}

.whatsapp-btn:hover,
.phone-btn:hover {
    transform: scale(1.1);
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-grid h3 {
    margin-bottom: 15px;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
}

/* ============================= */
/* RESPONSIVIDADE */
/* ============================= */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

@media (max-width: 768px) {

    .desktop-nav {
        display: none;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        display: block;
        margin-top: 10px;
    }

}

#proposta h2 {
    text-align: center;
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 40px;
    position: relative;
}

/* Linha decorativa abaixo */
#proposta h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #2563eb;
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}
.footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.instagram-link {
  color: #E1306C;
  margin-left: 8px;
  font-size: 18px;
  transition: 0.3s;
}

.instagram-link:hover {
  color: #fff;
}

.footer-social {
    .instagram-link {
  color: #E1306C;
  margin-left: 8px;
  font-size: 18px;
  transition: 0.3s;
}
}