/**
* Template Name: Presento
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/presento-bootstrap-corporate-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #e03a3c;
  text-decoration: none;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e03a3c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #e03a3c;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #e03a3c;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e03a3c;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #e03a3c;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #e03a3c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #e03a3c;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/fundo.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #e03a3c;
  border: 2px solid #e03a3c;
}

#hero .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e03a3c;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

/*--------------------------------------------------------------


# Clients
--------------------------------------------------------------*/
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}

.clients .swiper-slide img {
  opacity: 0.9;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 30px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #e03a3c;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: #e35052;
  background: #e03a3c;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #e03a3c;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5f3 !important;
  padding: 60px 0;
}


.counts #conteudo-sobre{

 display: flex;
 margin-top: 30px; 
}

.counts #conteudo-sobre img{
  width: 250px;
  height: 400px;
  margin-right: 20px;
}

.counts #conteudo-sobre ul{
  margin-top: 80px;
}


@media screen and (max-width: 720px){

  

  .counts #conteudo-sobre{
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    
    
    
  }

 


}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #e03a3c;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
} 

/*--------------------------------------------------------------
*/


/*
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #252525;
  transition: 0.3s;
  position: relative;
}

.services .icon-box:hover {
  background: #2b2b2b;
}

.services .icon-box i {
  float: left;
  color: #e03a3c;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  min-height: 50px;
}

.services .icon-box h4 a {
  color: #fff;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
  color: #e03a3c;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}





/*--------------------------------------------------------------

# Contact
--------------------------------------------------------------*/
.contact .info-box {
  
  color: #444444;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 32px 0;
  border-radius: 4px;
    
}



.contact .info-box i {
  font-size: 32px;
  color: #e03a3c;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;


  justify-content: center;
  align-items: center;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #e03a3c;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e03a3c;
  bottom: 0;
  left: 0;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e03a3c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #e35052;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #e03a3c;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Premium Theme Overrides
--------------------------------------------------------------*/
:root {
  --c-bg: #f6f4ef;
  --c-bg-alt: #0b1d23;
  --c-text: #1b262b;
  --c-muted: #6b7a80;
  --c-primary: #0f4c5c;
  --c-accent: #d4a857;
  --c-surface: #ffffff;
  --c-shadow: 0 20px 50px rgba(12, 26, 34, 0.18);
  --c-glass: rgba(246, 244, 239, 0.78);
}

body {
  font-family: "Manrope", "Open Sans", sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
}

a {
  color: var(--c-primary);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Raleway", serif;
  letter-spacing: 0.2px;
}

/* Header + Nav */
#header {
  background: var(--c-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: 0 10px 30px rgba(10, 20, 24, 0.08);
}

#header.header-scrolled {
  box-shadow: 0 12px 35px rgba(10, 20, 24, 0.12);
}

#header .logo a {
  color: var(--c-primary);
}

#header .logo a span {
  color: var(--c-accent);
}

.navbar a,
.navbar a:focus {
  color: var(--c-text);
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.navbar a:hover::after,
.navbar .active::after,
.navbar li:hover > a::after {
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--c-primary);
}

.get-started-btn {
  background: linear-gradient(135deg, var(--c-primary), #163f4b);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 76, 92, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-started-btn:hover {
  background: linear-gradient(135deg, #163f4b, var(--c-primary));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 76, 92, 0.32);
}

/* Hero */
#hero:before {
  background: linear-gradient(120deg, rgba(8, 18, 22, 0.88), rgba(15, 76, 92, 0.68));
}

#hero h1 {
  font-size: 52px;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

#hero h2 {
  color: #e6eff2;
}

#hero .btn-get-started {
  border-radius: 999px;
  border: 2px solid var(--c-accent);
  background: rgba(212, 168, 87, 0.12);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#hero .btn-get-started::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(12deg);
  transition: left 0.6s ease;
}

#hero .btn-get-started:hover::after {
  left: 140%;
}

#hero .btn-get-started:hover {
  background: rgba(212, 168, 87, 0.22);
  border-color: #f3d092;
}

/* Sections */
.section-title h2 {
  color: var(--c-primary);
  letter-spacing: 1px;
}

.section-title h2::after {
  background: var(--c-accent);
}

.section-bg {
  color: #eef3f4;
}

.section-bg:before {
  background: linear-gradient(135deg, #0b1d23 0%, #0f2f38 100%);
}

/* About */
.about .content h3 {
  color: #ffffff;
}

.about .content .about-btn {
  border: 2px solid var(--c-accent);
  color: #fff;
}

.about .content .about-btn:hover {
  background: var(--c-accent);
  color: #0b1d23;
}

.about .icon-boxes .icon-box i {
  color: var(--c-accent);
}

.about .icon-boxes .icon-box h4 {
  color: #ffffff;
}

.about .icon-boxes .icon-box p {
  color: #d0dde0;
}

/* Clients */
.clients .swiper-slide {
  padding: 6px;
}

.clients .swiper-slide img {
  border-radius: 10px;
  border: 1px solid rgba(212, 168, 87, 0.35);
  background: rgba(255, 255, 255, 0.02);
  filter: grayscale(60%);
}

.clients .swiper-slide img:hover {
  filter: none;
  box-shadow: 0 12px 28px rgba(212, 168, 87, 0.25);
}

.clients .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid var(--c-accent);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--c-accent);
}

/* Counts / Sobre */
.counts {
  background: linear-gradient(180deg, #f6f4ef 0%, #eef2f1 100%);
}

#titulo-sobre h1 {
  color: var(--c-primary);
}

.counts #conteudo-sobre {
  gap: 32px;
  align-items: center;
}

.counts #conteudo-sobre ul {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: var(--c-shadow);
  color: var(--c-text);
}

/* Services */
.services .icon-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 168, 87, 0.2);
  box-shadow: 0 14px 40px rgba(8, 18, 22, 0.35);
}

.services .icon-box i {
  color: var(--c-accent);
}

.services .icon-box h4 a {
  color: #ffffff;
}

.services .icon-box p {
  color: #d6e1e4;
}

/* Contact */
.contact .info-box {
  background: #ffffff;
  border: 1px solid rgba(212, 168, 87, 0.35);
  box-shadow: var(--c-shadow);
}

.contact .info-box i {
  color: var(--c-accent);
  border: 2px dotted rgba(212, 168, 87, 0.5);
}

.contact .info-box h3 {
  color: var(--c-primary);
}

/* Sites */
.sites {
  background: linear-gradient(180deg, #0b1d23 0%, #0f2f38 100%);
  color: #eef3f4;
}

.sites .section-title h2 {
  color: #ffffff;
}

.sites .info-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 168, 87, 0.25);
  box-shadow: 0 14px 40px rgba(8, 18, 22, 0.35);
  color: #eef3f4;
}

.sites .info-box i {
  color: var(--c-accent);
  border: 2px dotted rgba(212, 168, 87, 0.5);
}

.sites .info-box h3 {
  color: #ffffff;
}

.sites .info-box a {
  color: #f3d092;
}

.sites .info-box a:hover {
  color: #ffffff;
}

/* Footer */
#footer {
  background: #0b1d23;
}

#footer .footer-top {
  background: #0d2329;
}

#footer .footer-top h4::after {
  background: var(--c-accent);
}

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

#footer .social-links a {
  background: rgba(255, 255, 255, 0.08);
}

#footer .social-links a:hover {
  background: var(--c-accent);
  color: #0b1d23;
}

/* Back to top */
.back-to-top {
  background: var(--c-primary);
}

.back-to-top:hover {
  background: var(--c-accent);
  color: #0b1d23;
}

#sobre-section {
  padding: 40px 0 60px;
}

.counts {
  background: #f5f5f3 !important;
  padding: 60px 0;
}

#sobre-section {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 20px 0 40px;
}

#titulo-sobre {
  text-align: center;
  margin-bottom: 35px;
  background: transparent !important;
  box-shadow: none !important;
}

#titulo-sobre h1 {
  font-size: 48px;
  font-weight: 600;
  color: #0f4c5c;
  margin: 0;
  letter-spacing: 0.5px;
}

#counts {
  background: transparent !important;
  padding: 60px 0;
  margin-top: 0 !important;
  overflow: hidden;
  position: relative;
}

#counts::before,
#counts::after,
.counts::before,
.counts::after {
  display: none !important;
  content: none !important;
}

#counts .container,
#counts .row,
#sobre-section,
#conteudo-sobre {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

#conteudo-sobre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}

#nav-sobre {
  width: 60%;
}

#nav-sobre ul {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 35px 30px 45px;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

#imagem-sobre {
  width: 38%;
  min-width: 320px;
  min-height: 420px;
  border-radius: 22px;
  background-image: url("/assets/img/predio-cay.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/*--------------------------------------------------------------
# Formulário de contato Cay Business
--------------------------------------------------------------*/
.contato-form-box {
  background: #ffffff;
  border: 1px solid rgba(212, 168, 87, 0.35);
  box-shadow: var(--c-shadow);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
}

.contato-cay-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 15px;
  font-family: "Raleway", sans-serif;
}

.contato-cay-form .form-control {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d6e1e4;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--c-text);
  background: #f9fbfc;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contato-cay-form .form-control:focus {
  border-color: var(--c-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 168, 87, 0.12);
  outline: none;
}

.contato-cay-form textarea.form-control {
  resize: vertical;
  min-height: 170px;
}

.contato-cay-form .form-control::placeholder {
  color: #8a9aa1;
}

.contato-cay-form button {
  width: 100%;
  border: 0;
  padding: 15px 22px;
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-primary), #163f4b);
  box-shadow: 0 10px 24px rgba(15, 76, 92, 0.25);
  transition: all 0.3s ease;
}

.contato-cay-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 76, 92, 0.32);
}

@media (max-width: 991px) {
  .contato-form-box {
    margin-top: 20px;
  }
}

/* Layout da seção contato */
.contato-layout {
  align-items: stretch;
}

.contato-layout .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.contato-layout .col-lg-6 > .row {
  flex: 1;
}

/* Caixa do formulário */
.contato-form-box {
  background: #ffffff;
  border: 1px solid rgba(212, 168, 87, 0.35);
  box-shadow: var(--c-shadow);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
}

/* Formulário */
.contato-cay-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 15px;
  font-family: "Raleway", sans-serif;
}

.contato-cay-form .form-control {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d6e1e4;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--c-text);
  background: #f9fbfc;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contato-cay-form .form-control:focus {
  border-color: var(--c-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 168, 87, 0.12);
  outline: none;
}

.contato-cay-form textarea.form-control {
  resize: vertical;
  min-height: 170px;
}

.contato-cay-form .form-control::placeholder {
  color: #8a9aa1;
}

.contato-cay-form button {
  width: 100%;
  border: 0;
  padding: 15px 22px;
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-primary), #163f4b);
  box-shadow: 0 10px 24px rgba(15, 76, 92, 0.25);
  transition: all 0.3s ease;
}

.contato-cay-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 76, 92, 0.32);
}

/* Instagram */
.contact-social-links {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.contact-social-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-primary);
  background: rgba(212, 168, 87, 0.1);
  padding: 10px 18px;
  border-radius: 30px;
  transition: 0.3s;
}

.contact-social-links a:hover {
  background: var(--c-accent);
  color: #0b1d23;
}

/* Responsivo */
@media (max-width: 991px) {
  .contato-form-box {
    margin-top: 20px;
  }
}

.alerta {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

.alerta.erro {
  background: #ffe5e5;
  color: #b30000;
}

.alerta.sucesso {
  background: #e6f9ec;
  color: #1a7f37;
}

/* ===== Contato alinhado ===== */
.contato-layout {
  align-items: stretch;
}

.contato-info-col,
.contato-layout .col-lg-6:last-child {
  display: flex;
}

.info-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-box-custom {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px !important;
}

.contato-form-box {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(212, 168, 87, 0.35);
  box-shadow: var(--c-shadow);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
}

.contato-cay-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contato-cay-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 15px;
  font-family: "Raleway", sans-serif;
}

.contato-cay-form .form-control {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #d6e1e4;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--c-text);
  background: #f9fbfc;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contato-cay-form .form-control:focus {
  border-color: var(--c-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 168, 87, 0.12);
  outline: none;
}

.contato-cay-form textarea.form-control {
  min-height: 185px;
  resize: vertical;
}

.contato-cay-form button {
  width: 100%;
  border: 0;
  padding: 16px 22px;
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-primary), #163f4b);
  box-shadow: 0 10px 24px rgba(15, 76, 92, 0.25);
  transition: all 0.3s ease;
}

.contato-cay-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 76, 92, 0.32);
}

.contact-social-links {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.contact-social-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-primary);
  background: rgba(212, 168, 87, 0.1);
  padding: 10px 18px;
  border-radius: 30px;
  transition: 0.3s;
}

.contact-social-links a:hover {
  background: var(--c-accent);
  color: #0b1d23;
}

.alerta {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 14px;
}

.alerta.erro {
  background: #fdeaea;
  color: #b42318;
}

.alerta.sucesso {
  background: #e8f7ec;
  color: #166534;
}

@media (max-width: 991px) {
  .contato-info-col,
  .contato-layout .col-lg-6:last-child {
    display: block;
  }

  .info-box-custom {
    min-height: auto;
  }

  .contato-form-box {
    margin-top: 20px;
  }
}

.services .row {
  display: flex;
  flex-wrap: wrap;
}

.services .col-md-6 {
  display: flex;
}

.services .icon-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px; /* ajusta altura padrão */
}

/* ===== Investidores ===== */
.investidores {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #081216 0%, #0f2f38 48%, #0b1d23 100%);
  color: #eef3f4;
  overflow: hidden;
}

.investidores::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -140px;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.24), transparent 65%);
}

.investidores::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -150px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(246, 244, 239, 0.12), transparent 65%);
}

.investidores .container {
  position: relative;
  z-index: 1;
}

.investidores-title h2 {
  color: #ffffff;
}

.investidores-title h2::after {
  background: var(--c-accent);
}

.investidores-title p {
  color: #d6e1e4;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.investidores-intro {
  height: 100%;
  padding: 34px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 168, 87, 0.32);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.investidores-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #0b1d23;
  background: var(--c-accent);
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
}

.investidores-intro h3,
.investidores-call h3 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.investidores-intro p {
  color: #d6e1e4;
  margin-bottom: 14px;
  line-height: 1.75;
}

.investidores-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 13px 22px;
  border-radius: 999px;
  color: #0b1d23;
  background: var(--c-accent);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(212, 168, 87, 0.24);
  transition: all 0.3s ease;
}

.investidores-btn:hover {
  color: #0b1d23;
  background: #f3d092;
  transform: translateY(-2px);
}

.investidores-card {
  height: 100%;
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(212, 168, 87, 0.28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.investidores-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
}

.investidores-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #0b1d23;
  background: rgba(212, 168, 87, 0.28);
  font-size: 28px;
}

.investidores-card h4 {
  color: var(--c-primary);
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
}

.investidores-card p {
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.investidores-call {
  margin-top: 42px;
  padding: 26px 30px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(135deg, rgba(212, 168, 87, 0.18), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(212, 168, 87, 0.28);
}

.investidores-call h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.investidores-call p {
  color: #d6e1e4;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .investidores {
    padding: 70px 0;
  }

  .investidores-intro h3,
  .investidores-call h3 {
    font-size: 28px;
  }
}
