@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary-blue: #002B7F;
  --secondary-blue: #0056b3;
  --accent-orange: #FF6600;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
  width: 100%;
}

/* Header & Nav */
header {
  background-color: #03143e; /* Dark navy to match logo background */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-container img {
  height: 50px;
  width: auto;
  max-width: 100%;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary-blue);
  letter-spacing: -1px;
}

.logo-sub {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-orange);
  margin-left: 5px;
  font-style: italic;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-orange);
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh;
}

/* Intro Banner */
.intro-banner {
  background-color: white;
  text-align: center;
  padding: 4rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-bottom: 4px solid var(--accent-orange);
  margin-bottom: 0;
}

.intro-banner h1 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 800;
  max-width: 1000px;
  margin: 0 auto;
}

/* Sections */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

/* Quem Somos */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  color: #555;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-left: 5px solid var(--accent-orange);
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: translateY(-5px);
}

/* Diretrizes (Mission, Vision, Values) */
.guidelines {
  background-color: white;
  max-width: 100%;
  padding: 6rem 0;
}

.guidelines-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-bottom: 4px solid var(--primary-blue);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:nth-child(2) {
  border-bottom-color: var(--accent-orange);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-family: var(--font-heading);
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card p {
  color: #666;
  font-size: 1rem;
}

/* Nossos Valores (List) */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.values-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.values-list {
  list-style: none;
}

.values-list li {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: transform 0.2s;
}

.values-list li:hover {
  transform: translateX(10px);
}

.values-list li i {
  color: var(--accent-orange);
  margin-right: 15px;
  font-size: 1.5rem;
}

/* Contatos Section */
.contacts-section {
  background: linear-gradient(135deg, #001a4d 0%, var(--primary-blue) 100%);
  color: var(--text-light);
  padding: 6rem 2rem;
  max-width: 100%;
}

.contacts-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contacts-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacts-title span {
  color: #FFD700; /* Yellow bar */
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  background: transparent;
  gap: 1.5rem;
}

.contact-icon {
  background: linear-gradient(to bottom, #FF8C00, #FF6600); /* Laranja em vez de amarelo */
  border-radius: 8px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.contact-icon i {
  color: white;
  font-size: 1.8rem;
}

.contact-item p {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  word-wrap: break-word;
  word-break: break-all;
}

/* Obrigado Section */
.thank-you-section {
  background-color: #6d7b8c;
  background-image: linear-gradient(135deg, #44566c 0%, #6d7b8c 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: white;
  max-width: 100%;
}

.thank-you-section h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.thank-you-section .orange-text {
  font-family: var(--font-heading);
  color: var(--accent-orange);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.thank-you-section p {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #03143e; /* Dark navy to match logo background */
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-content img {
  height: 60px;
  width: auto;
  max-width: 100%;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

.footer-logo span {
  color: var(--accent-orange);
}

.copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  z-index: 1001;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  #navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #03143e;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  #navbar.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  #navbar ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  #navbar ul li {
    width: 100%;
  }

  #navbar ul li a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  #navbar ul li:last-child a {
    border-bottom: none;
  }

  .about-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .section-title, .contacts-title {
    font-size: 2rem;
  }
  .intro-banner h1 {
    font-size: 1.8rem;
  }
  .thank-you-section h2 {
    font-size: 2.2rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .nav-container {
    padding: 1rem 1.5rem;
  }
  .contact-item p {
    font-size: 1.1rem;
    word-wrap: break-word;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .values-list li {
    font-size: 1.1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .intro-banner h1 {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .contact-item p {
    font-size: 0.9rem;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .contact-icon i {
    font-size: 1.2rem;
  }
  .contact-item {
    gap: 1rem;
  }
}
