/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Container e Wrapper */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper {
  width: 100%;
  padding: 20px 0;
}

/* CUSTOMIZE THEME */
:root {
  /* COLORS */
  --primary-color: #0056FF;
  --secondary-color: #6FDBE9;
  --grey: #5c5c5c;
  --dark: #343a40;
  --light: #f0f0f0;
  --alert: #b31610;
  
  /* FONTS */
  --primary-font: 'Arial', sans-serif;
  
  /* BORDERS */
  --border-radius: 5px;
}

/* Header */
header { 
  background-color: #fff; 
}

header .logo img { 
  display: block;  
  width: 100%; 
  max-width: 200px; 
  height: 99px; 
  padding-bottom: 10px; 
}

/* TOPO */
header .topo { 
  background-color: var(--primary-color); 
  padding: 8px 0; 
  font-size: 13px; 
  color: #fff; 
}

header .topo :is(span, a) { 
  font: 13px var(--primary-font); 
  color: #fff; 
  transition: .3s; 
}

header .topo a:hover { 
  opacity: 0.75;
}

/* MENU */
header #menu {
  text-align: center;
}

header #menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 4px;
}

header #menu li {
  position: relative;
  display: inline-block;
  margin: 0;
}

header #menu a {
  display: block;
  box-sizing: border-box;
  padding: 11px 15px;
  text-align: center;
  transition: .5s;
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
}

header #menu li:hover > a,
header #menu li > a.active-menu-topo { 
  color: #fff; 
  background-color: var(--primary-color); 
  border-radius: 5px;
}

/* ACTIVE MENU TOPO */
.active-menu-topo {
  color: var(--primary-color);
}

/* header fixo */
.headerFixed { 
  position: fixed !important; 
  width: 100%; 
  z-index: 999; 
  top: 0px; 
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; 
}

.headerFixed .topo { 
  display: none; 
}

.headerFixed .logo img {
  max-width: 180px;
  margin: 16px auto;
}

.headerFixed:is(.headerSlide, .headerFade) {
  animation-delay: 0.5s; 
  animation-duration: 0.30s; 
  animation-timing-function: ease-out; 
  animation-fill-mode: forwards;
}

/* header fixo - efeito slide */
.headerSlide { 
  animation-name: headerSlide; 
  transform: translateY(-100%); 
}

@keyframes headerSlide {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* header fixo - efeito fade */
.headerFade { 
  animation-name: headerFade; 
  opacity: 0; 
}

@keyframes headerFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Flexbox Utilities */
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

/* Grid */
.grid {
  display: grid;
  gap: 20px;
}

.grid-col-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-col-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-col-5 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Banner */
.slick-banner {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.slick-banner h2 {
  font-size: 54px;
  margin-bottom: 20px;
}

.slick-banner p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Buttons */
.btn__home,
.btn-primary {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn__home:hover,
.btn-primary:hover {
  background: #0052a3;
}

/* Cards */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card--mod-26 .card__cover {
  text-align: center;
  font-size: 48px;
  color: #0066cc;
  margin-bottom: 15px;
}

.card__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.card__text {
  color: #666;
  font-size: 14px;
}

/* Background Gradient */
.bg-linear-gradient {
  background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
  padding: 60px 0;
}

/* Typography */
.text-center {
  text-align: center;
}

.white {
  color: #fff;
}

.fs-54 {
  font-size: 54px;
}

.fs-22 {
  font-size: 22px;
}

.fs-18 {
  font-size: 18px;
}

.fw-bold {
  font-weight: bold;
}

.mb-0 {
  margin-bottom: 0;
}

/* Video */
.video__home {
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0 20px;
}

.footer__menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer__menu a {
  color: #fff;
}

.footer__list-contacts {
  text-align: center;
  margin: 20px 0;
}

.footer__list-contacts span,
.footer__list-contacts a {
  display: block;
  margin: 5px 0;
  color: #ccc;
}

.social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social__icons {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #333;
  color: #fff;
  transition: background 0.3s;
}

.social__icons:hover {
  background: #0066cc;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.form-group textarea {
  resize: vertical;
}

/* Alerts */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* FOOTER */
footer { 
  background-color: var(--primary-color); 
  padding: 25px 0; 
}

footer .footer__menu nav ul { 
  display: flex; 
  flex-wrap: wrap; 
  align-items: center; 
  justify-content: center; 
}

footer .footer__menu nav li { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

footer .footer__menu nav li:not(:last-child) { 
  border-right: 1.5px solid rgba(255, 255, 255, 5%); 
}

footer .footer__menu nav li a { 
  display: block; 
  color: #fff; 
  font-size: 14px; 
  text-align: center; 
  box-sizing: border-box; 
  padding: 5px 12px; 
  transition: .3s; 
}

footer .footer__menu nav li:hover a { 
  color: black; 
}

footer .footer__list-contacts p { 
  color: #fff; 
  padding: 5px;
}

footer .address :is(a, span) { 
  font-size: 15px; 
  line-height: 28px; 
  color: #fff; 
  text-align: center; 
  transition: .3s; 
}

footer .address a:not(.social__icons):hover { 
  color: black; 
}

footer .social { 
  margin-top: 1.25rem; 
  justify-content: center; 
  gap: 8px; 
}

footer .social .social__icons { 
  font-size: 30px; 
  color: #fff; 
}

footer .social .social__icons:hover { 
  opacity: .25; 
}

footer .footer__logo img{ 
  background-color: #fff; 
  border-radius: 15px; 
  height: 110px; 
  width: auto;
}

.footer__list-contacts {
  width: 240px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.footer__list-contacts p {
  margin-bottom: 10px;
}

.footer__list-contacts span {
  display: block;
  margin-bottom: 5px;
}

.footer__list-contacts a {
  color: #fff;
  text-decoration: none;
}

.social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s;
}

.social__icons:hover {
  transform: scale(1.1);
}

.social__icons.instagram { background: #E4405F; }
.social__icons.facebook { background: #1877F2; }
.social__icons.linkedin { background: #0077B5; }
.social__icons.youtube { background: #FF0000; }

/* Contact Form */
.contact-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066cc;
}

.contact-info {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 5px;
}

.contact-item i {
  font-size: 24px;
  color: #0066cc;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.contact-item h3 {
  margin: 0 0 5px 0;
  color: #333;
}

.contact-item p {
  margin: 0;
}

.contact-item a {
  color: #0066cc;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Utility Classes */
.p-5 { padding: 20px; }
.col-12 { width: 100%; }
.text-center { text-align: center; }
.picture-center { display: block; margin: 0 auto; }
.white { color: #fff; }
.m-0 { margin: 0; }
.p-0 { padding: 0; }
.tamanho { font-size: 15px !important; padding: 0px !important; margin-bottom: 5px; }

/* Row and Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.row > * {
  padding: 0 15px;
}

/* Clear */
.clear {
  clear: both;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--primary-font);
  color: var(--primary-color);
  margin: 25px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--primary-color);
}


/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .wrapper {
    padding: 15px 0;
  }
  
  .topo .d-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .topo a {
    margin: 0 5px;
    font-size: 12px;
  }
  
  .d-flex.flex-sm-column {
    flex-direction: column;
    gap: 20px;
  }
  
  .logo img {
    max-width: 200px;
  }
  
  #menu ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  #menu a {
    text-align: center;
    padding: 8px 10px;
  }
  
  .grid-col-2,
  .grid-col-3,
  .grid-col-5 {
    grid-template-columns: 1fr;
  }
  
  .slick-banner {
    padding: 60px 20px;
  }
  
  .slick-banner h2 {
    font-size: 36px;
  }
  
  .slick-banner p {
    font-size: 16px;
  }
  
  .bg-linear-gradient {
    padding: 40px 0;
  }
  
  /* Footer Responsive */
  .footer__menu nav ul {
    flex-direction: column;
    gap: 10px;
  }
  
  .social {
    flex-wrap: wrap;
  }
  
        .footer__list-contacts {
            margin-bottom: 15px;
            padding: 10px;
        }
        
        
        /* Menu responsive */
        header #menu ul {
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }
        
        header #menu a {
            text-align: center;
            padding: 8px 10px;
        }
    }
