﻿/* ===== RESET E ESTILOS GLOBAIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f7fa;
}

/* ===== CORES PRINCIPAIS ===== */
:root {
  --primary-color: #003d82;
  --secondary-color: #ffd700;
  --accent-color: #005fa3;
  --light-bg: #f5f7fa;
  --white: #ffffff;
  --text-dark: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: var(--primary-color);
  padding: 12px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-navbar {
  height: 45px;
  width: auto;
}

.navbar-text {
  color: white;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.navbar-links {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: var(--secondary-color);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 100px 30px;
  text-align: center;
  color: white;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  animation: fadeInDown 1s ease-in-out;
}

.logo-hero {
  height: 100px;
  width: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero h1 {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
}

.hero-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.hero-btn:hover {
  background-color: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ===== SERVIÇOS ===== */
.services {
  padding: 80px 30px;
  background-color: var(--white);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--primary-color);
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-color);
  animation: fadeInUp 0.8s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-top-color: var(--accent-color);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-card p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: justify;
}

.service-card .example {
  background-color: rgba(0, 61, 130, 0.05);
  padding: 12px;
  border-left: 3px solid var(--secondary-color);
  margin-bottom: 20px;
  font-size: 14px;
  text-align: left;
}

.service-link {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 61, 130, 0.2);
}

.service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 61, 130, 0.3);
}

/* ===== POR QUE CONFIAR ===== */
.diferenciais {
  padding: 80px 30px;
  background-color: var(--light-bg);
}

.diferenciais-container {
  max-width: 1200px;
  margin: 0 auto;
}

.diferenciais h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--primary-color);
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
}

.diferenciais h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.diferencial-card {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid var(--secondary-color);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  animation: fadeInUp 0.8s ease-in-out;
}

.diferencial-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.diferencial-icon {
  font-size: 28px;
  color: var(--secondary-color);
  font-weight: bold;
  min-width: 40px;
  text-align: center;
}

.diferencial-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: bold;
}

.diferencial-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ===== ÁREAS DE ATUAÇÃO ===== */
.areas {
  padding: 80px 30px;
  background-color: var(--white);
}

.areas-container {
  max-width: 1200px;
  margin: 0 auto;
}

.areas h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: var(--primary-color);
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
}

.areas h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.area-card {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-color);
  animation: fadeInUp 0.8s ease-in-out;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.area-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.area-card h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: bold;
}

.area-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== SOBRE ===== */
.about {
  padding: 80px 30px;
  background-color: var(--light-bg);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: flex-start;
}

.about-content {
  animation: fadeInLeft 1s ease-in-out;
}

.about h2 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: bold;
}

.about p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.about h3 {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.about ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.about ul li {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.about-info {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  margin-top: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-info p {
  margin-bottom: 10px;
  font-size: 14px;
}

.about-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInRight 1s ease-in-out;
  border: 5px solid var(--secondary-color);
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 30px;
  background-color: var(--white);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 60px;
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
}

.faq h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.faq-list {
  display: grid;
  gap: 15px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-in-out;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background-color: var(--light-bg);
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
}

.faq-question:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: var(--accent-color);
}

.faq-question.active {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0;
  color: var(--text-light);
  display: none;
  background-color: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  line-height: 1.7;
}

.faq-answer.active {
  display: block;
  padding: 20px;
  max-height: 500px;
  border-top: 2px solid var(--secondary-color);
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
}

/* ===== CONTATO ===== */
.contact {
  padding: 80px 30px;
  background-color: var(--light-bg);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact h2 {
  text-align: center;
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.contact-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease-in-out;
  border-top: 4px solid var(--secondary-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
  background-color: #fffef5;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0, 61, 130, 0.2);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 61, 130, 0.3);
}

.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease-in-out;
  border-top: 4px solid var(--secondary-color);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: bold;
}

.info-item {
  margin-bottom: 25px;
}

.info-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.info-item p {
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
}

.info-item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--secondary-color);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 50px 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  text-align: center;
  margin-bottom: 40px;
}

.logo-footer {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: bold;
}

.footer-content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.social-links a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 5px 0;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .services-grid,
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .about-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    gap: 12px;
    font-size: 13px;
  }

  .navbar-text {
    font-size: 16px;
  }

  .logo-navbar {
    height: 35px;
  }

  .hero {
    padding: 60px 20px;
    min-height: 400px;
  }

  .logo-hero {
    height: 70px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .services-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .services h2,
  .areas h2,
  .diferenciais h2,
  .about h2,
  .faq h2,
  .contact h2 {
    font-size: 32px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar-container {
    flex-direction: column;
    gap: 10px;
  }

  .navbar-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
  }

  .hero {
    padding: 50px 15px;
    min-height: 350px;
  }

  .logo-hero {
    height: 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .services,
  .areas,
  .diferenciais,
  .about,
  .faq,
  .contact {
    padding: 50px 15px;
  }

  .services h2,
  .areas h2,
  .diferenciais h2,
  .about h2,
  .faq h2,
  .contact h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .service-card,
  .area-card,
  .diferencial-card {
    padding: 20px;
  }

  .about-img {
    width: 150px;
    height: 150px;
  }

  .contact-form,
  .contact-info {
    padding: 20px;
  }

  .whatsapp-float svg {
    transform: scale(1) rotate(0deg) !important;
    display: block;
  }

}