﻿:root {
  --accent: #002064;
  --muted: #6b7280;
  --radius: 12px;
  --bg: #f7f7f7;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: #002064;
  margin: 0;
  padding: 0;
}

/* Container centralizado */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  width: 100%;
  background: #fff;
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
}

.logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav a {
  font-weight: 600;
  text-decoration: none;
  color: #002064;
}

nav a.cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 900px) {
  .hamburger { display: block; }
  nav { display: none; }
}

/* Menu mobile */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100px;
  right: 15px;
  width: 220px;
  background: #fff;
  padding: 18px 20px;
  gap: 14px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 1000;
  text-align: center;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 10px 0;
}

.mobile-menu a.cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    height: auto;
  }
  nav {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
  }
  .brand-title { font-size: 18px; }
}

@media (max-width: 600px) {
  .logo { width: 80px; height: 80px; }
  .brand-title { font-size: 16px; }
}

/* SWIPER */
.swiper {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  min-height: 350px;
}

.swiper-slide {
  width: 100% !important;
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 25px;
}

.swiper-button-next {
	right: 100px; 
}
.swiper-button-prev {
	left: 100px; 
}

.swiper-pagination {
  text-align: center;   
  margin-top: -15px;    
  position: relative;
}   

/* FOOTER */
.footer {
  background: #001840;
  color: #ccc;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Contato */
.contact {
  background: #002064;
  color: #fff;
  padding: 40px 20px;
}

.contact .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info {
  flex: 1 1 200px;
}

.contact-info p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  padding: 12px;
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background: #f0f0f0;
}

@media (max-width: 900px) {
  .contact .container {
    flex-direction: column;
  }
}
