/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   BODY
========================= */

body {
    font-family: "Roboto", sans-serif;
    color: #111827;
    background: #ffffff;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: 100%;
    max-width: 1152px;

    margin: 0 auto;

    padding: 0 16px;
}


/* =========================
   HEADER
========================= */

.header {
    width: 100%;

    position: sticky;
    top: 0;

    z-index: 999;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 16px;
}

.logo-area {
    display: flex;
    align-items: center;

    gap: 12px;
}

.logo-symbol {
    width: 48px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #003cbd;
}

@media (max-width: 768px) {

    .logo-text {
        font-size: 16px;
    }

}

.nav-menu {
    display: flex;
    align-items: center;

    gap: 24px;
}

.nav-link {
    color: #111827;

    text-decoration: none;

    transition: 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.header-button {
    background: #2563eb;

    color: white;

    padding: 12px 24px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.header-button:hover {
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */


.hero-section {
    padding: 60px 20px;
    background: #cde0fd;
}


.hero-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 48px;
}

.hero-image,
.hero-text {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
}

.hero-text h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #003dc2;
    font-weight: 700;
}

.hero-text p {
    margin-top: 20px;

    max-width: 550px;

    font-size: 20px;

    color: #4b5563;
}

.hero-buttons {

    display: flex;

    gap: 16px;

    margin-top: 32px;
}

.primary-button,
.whatsapp-button {

    padding: 14px 28px;

    border-radius: 12px;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.5s;
}

/* BOTÃO AZUL */

.primary-button {

    background: #2563eb;
}

.primary-button:hover {

    transform: translateY(-4px);

    background: #1d4ed8;

    box-shadow: 0 12px 24px rgba(37,99,235,0.30);
}

/* BOTÃO WHATSAPP */

.whatsapp-button {

    background: #16a34a;
}

.whatsapp-button:hover {

    transform: translateY(-4px);

    background: #15803d;

    box-shadow: 0 12px 24px rgba(22,163,74,0.30);
}




/* =========================
   PRODUCTS
========================= */


.products-section {
    width: 100%;
    padding: 60px 0;
    background: white;
}

.products-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 50px;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 42px;
}

.section-title p {
    margin-top: 10px;

    color: #6b7280;
}

.product-content {
    padding: 12px;
     display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 22px;

    font-weight: 700;
}

.product-description {
    margin-top: 12px;

    line-height: 1.5;

    color: #4b5563;

    flex: 1;
}

.product-card {
    border: 1px solid #2563eb;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    transition: 0.3s;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.product-image-btn {
    width: 100%;

    height: 350px;

    border: none;

    background: #f3f4f6;

    overflow: hidden;

    cursor: pointer;
}

.product-image {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}

.product-image:hover {
    transform: scale(1.08);
}

.product-button {
    display: block;

    width: 100%;

    margin-top: auto;

    padding: 12px;

    border-radius: 10px;

    background: #2563eb;

    color: white;

    text-align: center;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.product-button:hover {
    background: #1d4ed8;
}

/* =========================
   CONTATO + ENDEREÇO
========================= */

.contact-section {

    width: 100%;

    padding: 100px 20px;

    background: #cde0fd;
}

/* CONTAINER DOS CARDS */

.contact-wrapper {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    gap: 32px;

    align-items: stretch;
}

/* CARDS */

.contact-card,
.endereço-card {

  border: 1px solid #2563eb;

    border-radius: 18px;

    flex: 1;

    background: white;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TÍTULOS */

.contact-card h3,
.endereço-card h3 {

    text-align: center;

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 32px;
}

/* FORMULÁRIO */

#contact-form {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

/* INPUTS */

.custom-input {

    width: 100%;

    padding: 14px 18px;

    border: 1px solid #d1d5db;

    border-radius: 12px;

    font-size: 16px;

    outline: none;

    transition: 0.3s;
}

/* FOCUS INPUT */

.custom-input:focus {

    border-color: #2563eb;

    box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

/* BOTÃO */

.submit-button {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 12px;

    background: #2563eb;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

/* HOVER BOTÃO */

.submit-button:hover {

    transform: translateY(-3px);

    background: #1d4ed8;

    box-shadow: 0 10px 24px rgba(37,99,235,0.25);
}


/* MAPA */

.endereço-card iframe {


    width: 100%;

    height: 350px;

    border: none;

    border-radius: 16px;

    display: block;
}


/* RESPONSIVO */

@media (max-width: 900px) {

    .contact-wrapper {

        flex-direction: column;
    }
}


/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: #22c55e;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.2);

    z-index: 999;
}


/* =========================
   MODAL
========================= */

.modal-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.7);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 9999;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
}

.modal-image {
    max-width: 90vw;
    max-height: 90vh;

    border-radius: 16px;
}

.modal-close {
    position: absolute;

    top: -12px;
    right: -12px;

    width: 36px;
    height: 36px;

    border: none;

    border-radius: 50%;

    background: white;

    font-size: 24px;

    cursor: pointer;
}
/* =========================
   RESPONSIVE
========================= */

.footer {
    padding: 24px;
    text-align: center;
    background: #111827;
    color: white;
}

.developer-credit {
    display: inline-block;
    margin-top: 8px;
    color: #93c5fd;
    text-decoration: none;
    transition: 0.3s;
}

.developer-credit:hover {
    color: white;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .hero-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 34px;
    }
 .primary-button,
    .whatsapp-button {
        width: 100%;
        text-align: center;
    }
  }

@media (max-width: 768px) {

    .product-image-btn {
        height: 260px;
    }

}

