/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #384046; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3498db; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #007BFF; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #007BFF; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}



/* header */

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
}


.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 16px;
}


/* nav */

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
  background-color: transparent;
  border-radius: 0;
  font-weight: 600;
}



/* banner content */

/* titulo*/
.hakademic-title {
  color: var(--nav-hover-color); 
}

/* btn demostration */
.btn-demo {
  margin-left: 80px;
  background-color: transparent; 
  color: var(--background-color); 
  padding: 8px 16px !important;
  border: 1px solid #3f3f3f; 
  border-radius: 2px;
  font-size: 14px !important;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; 
  box-shadow: none;
}

.navmenu .btn-demo:hover {
  background-color: var(--nav-hover-color) !important;
  color: var(--contrast-color) !important;
  border-color: var(--nav-hover-color) !important;
  padding: 8px 14px !important;
  border-radius: 4px;
  font-size: 12px !important;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; 
  box-shadow: none;
}

.navmenu li:hover > a:not(.btn-demo),
.navmenu .active:not(.btn-demo),
.navmenu .active:focus:not(.btn-demo) {
  color: var(--nav-hover-color);
  background-color: transparent;
  border-radius: 0;
  font-weight: 600;
}


/* btn style| */

.btn {
  padding: 10px 20px;
  font-size: 1rem;
  margin: 10px;
  transition: background-color 0.3s ease;
}

.btn-outline-light:hover {
  background-color: #333; 
  color: var(--nav-dropdown-hover-color);
  border: 1px solid var(--nav-hover-color);
}

.btn-primary {
  background-color: var(--nav-hover-color); 
  border-color: var(--nav-hover-color);
  color: var(--contrast-color);
}



/* Styling for Demonstration Request Section */
.demo {
  padding: 60px 0;
  background: #f9fafa;
}

.demo .section-title h2 {
  font-size: 32px;
  color: #333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.demo .description-title {
  color: var(--nav-hover-color);
  font-weight: 600;
  font-size: 18px;
}

.demo .php-email-form {
  background: var(--background-color);
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.demo .php-email-form label {
  font-size: 14px; 
  color: var(--nav-hover-color); 
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 1.4px;
  display: inline-block;
}

.demo .php-email-form input, 
.demo .php-email-form select, 
.demo .php-email-form textarea {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.demo .php-email-form input:focus, 
.demo .php-email-form select:focus, 
.demo .php-email-form textarea:focus {
  border-color: var(--nav-hover-color);
  outline: none;
}

.demo .php-email-form button[type=submit] {
  background: var(--nav-hover-color);
  border: none;
  padding: 12px 30px;
  color: var(--background-color);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.demo .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
  width: 100%;
}

.demo .loading, 
.demo .error-message, 
.demo .sent-message {
  display: none;
  font-size: 14px;
  margin-top: 15px;
}

.demo .loading {
  color: #ff5828;
}

.demo .error-message {
  color: red;
}

.demo .sent-message {
  color: green;
}


/* hero */

.hero {
  width: 100%;
  min-height: 85vh; 
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About Section Layout */
.image-top img {
  width: 100%;
  height: 275px; 
  object-fit: cover;
}

.image-bottom img {
  width: 100%;
  height: 160px; 
  object-fit: cover;
}

.image-large img {
  width: 100%;
  height: 580px; 
  object-fit: cover;
}

/* Ajustar a posicao das imagens empilhadas a esquerda */
.col-lg-4.d-flex.flex-column {
  align-items: flex-end; 
  justify-content: flex-start; 
  padding-top: 60px; 
}


/* style para a coluna do texto */
.col-lg-8.d-flex {
  align-items: flex-start; 
}

.about-content {
  padding-top: 45px;
  padding-left: 0;
  padding-right: 0;
  max-width: 100%; 
}


.about-content h3 {
  font-size: 18px; 
}

.about-content p.fst-italic {
  font-size: 12px; 
}

.about-content ul li div h4 {
  font-size: 14px; 
}

.about-content ul li div p {
  font-size: 11px; 
}

/* Estilo para listas */
.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.about-content ul li i {
  font-size: 16px; 
  color: var(--accent-color);
  margin-right: 10px;
}

.about-content h3 {
  font-size: 16px; 
}

.about-content p.fst-italic {
  font-size: 12px; 
}

.about-content ul li div h4 {
  font-size: 13px; 
}

.about-content ul li div p {
  font-size: 11px; 
}

/* Estilo para listas */
.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.about-content ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
}

.about-section p {
  color: var(--default-color);
}

.about-section:not(p){
  color:var(--default-color);
}

.about-section .col-12 p {
  color: var(--default-color); 
}




/* contact */
#contact .section-title {
  text-align: center;
  padding-bottom: 40px;
}

#contact .info-item {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

#contact .info-item i {
  font-size: 24px;
  color: var(--contrast-color);
  margin-right: 15px;
}

#contact .php-email-form {
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

#contact .php-email-form input, 
#contact .php-email-form textarea {
  border-radius: 4px;
  margin-bottom: 20px;
}

#contact .php-email-form button[type=submit] {
  background: var(--nav-hover-color);
  border-radius: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  width: 100%;
}

#contact .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
}

#contact .loading,
#contact .error-message,
#contact .sent-message {
  display: none;
  font-size: 14px;
}

#contact .loading {
  color: #ffc107;
}


/* Galeria de recursos */
.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(200, 200, 200, 0.5);
 
}

/* beneficios */
.icon-beneficio {
  font-size: 2rem;
  color: var(--nav-hover-color);
  margin-bottom: 1rem;
}

.benefit{
  border:1px solid var(--nav-hover-color);
}

/* funcionalidades */
.services .service-item:hover {
  background: var(--background-color);
  border: 1px solid var(--nav-dropdown-hover-color);
}



/* Nossos Clientes Section */
.clientes {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef); 
  padding: 60px 0;
}

.clientes .section-title h2 {
  margin-bottom: 20px;
}

.clientes .section-title p {
  color: #6c757d; 
  font-size: 16px;
}


/* Carrossel de Clientes */
.clientes-carousel {
  padding: 20px 0;
}

.clientes-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff; 
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clientes-carousel .swiper-slide:hover {
  transform: translateY(-10px); 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cliente-logo {
  padding: 20px;
  text-align: center;
}

.cliente-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%); 
  transition: filter 0.3s ease;
}

.cliente-logo:hover img {
  filter: grayscale(0%); 
}

/* Paginacao do Carrossel */
.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background-color: #ccc; 
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--nav-hover-color); 
}







/* footer */

.footer {
  color: #ffffff; 
  background-color: var(--nav-hover-color); 
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--contrast-color); 
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: #cccccc; 
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3); 
  font-size: 16px;
  color: inherit;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color); 
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--contrast-color); 
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #cccccc; 
  display: inline-block;
  line-height: 1;
  text-decoration: none; 
}

.footer .footer-links ul a:hover {
  color: var(--accent-color); 
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #cccccc; 
}

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

.footer .footer-contact a:hover {
  color: var(--accent-color); 
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgba(0, 0, 0, 0.2); 
}

.footer .copyright p {
  margin-bottom: 0;
  color: var(--contrast-color); 
  font-weight: bold;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
  color: #cccccc; 
}