/**
* Template Name: OnePage
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #01a3a8;
  text-decoration: none;
  
}

a:hover {
  color: black;
  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: #08e1e9;
  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: black;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #08e1e9;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  padding: 20px 0;
  z-index: 997; 
  padding: 5px 0;
  border-bottom: 1px solid grey;
  box-shadow: 0 10px 30px rgba(16, 2, 2, 0.55), inset 0 1px 0 rgba(255,255,255,0.02);
  backdrop-filter: blur(8px) saturate(120%);
}

#header.header-scrolled {
  border-color: #ffffff;
  box-shadow: 0px 2px 15px rgba(101, 18, 18, 0.08);
}

#header .logo {
  font-size: 35px;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-weight: 1000;
  letter-spacing: 0,5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: white;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# 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-size: 14px;
  color: white;
  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: rgb(10, 217, 224);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: rgb(7, 219, 226);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: black;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.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: #08e1e9;
}

.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: black;
  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(7, 219, 226, 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: black;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #08e1e9;
}

.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: #08e1e9;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;  
  position: relative;
  background: url("../img/hero-bg.webp") top center;
  background-size: cover;
  position: relative;
}

.hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  padding-top: 80px;
}

.hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
}

.hero h2 {
  color: #e0e0e0;
  margin: 10px 0 0 0;
  font-size: 22px;
}

.hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #ffffff;
  -webkit-text-stroke: 1px rgb(255, 255, 255); 
  background: #08e1e9;
}

.hero .btn-get-started:hover {
  background: black;
}

.hero .icon-boxes {
  text-align: center;
  width: 100%;
}

.hero .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08); 
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  z-index: 1;
}

.hero .icon-box .title {
  text-align: center;
  width: 100%;
}

.hero .icon-box .title a {
  color: black;
  transition: 0.3s;
}

.hero .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 80px;
  line-height: 1;
  color: #f8f8f8;
}

.hero .icon-box:hover {
  transform: scale(1.08);
}

.hero .icon-box:hover .title a {
  color: #08e1e9;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  .hero {
    height: auto;
  }
}

@media (max-width: 992px) {
  .hero {
    height: auto;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background: #174e86 url('background.png') center center / cover no-repeat;
  min-height: 50vh;
  opacity: 0.95;
  transition: opacity 0.5s ease; 
  background-attachment: fixed;
}

.section-title {
  text-align: center;
  padding-bottom: 2rem; /* mais semântico */
}

.section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem; /* responsivo (32px = 2rem) */
  font-weight: 700;
/*text-transform: uppercase;*/ /*Maisculo*/
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.section-title p {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;             /* ajuste conforme seu design (1rem = ~16px) */
  color: rgb(168, 168, 168);
  display: inline-block;       /* permite centralizar e aplicar max-width */
  margin: 0 auto;              /* centraliza */
  vertical-align: middle;
  }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #08e1e9;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #08e1e9;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #08e1e9;
}

.about .content .btn-learn-more:hover {
  background: #08e1e9;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
}

.counts .count-box {
  width: 100%;
  text-align: center;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: black;
  margin-left: 80px;
  margin: auto;
}

.counts .count-box p {
  padding: 8px 0 0 0;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: black;
}

/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
  font-size: 15px;
}

.about-video .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: black;
}

.about-video .content ul {
  list-style: none;
  padding: 0;
}

.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.about-video .content ul i {
  font-size: 24px;
  color: #08e1e9;
  position: absolute;
  left: 0;
  top: -2px;
}

.about-video .content p:last-child {
  margin-bottom: 0;
}

.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#08e1e9 50%, rgba(7, 219, 226) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about-video .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about-video .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about-video .play-btn:hover::after {
  border-left: 15px solid #08e1e9;
  transform: scale(20);
}

.about-video .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c9e3f5;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #0099ff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #008eec;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #08e1e9;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #08e1e9;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: black;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #ff6347;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #08e1e9;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #08e1e9;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #08e1e9;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(36, 135, 206, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #08e1e9;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #08e1e9;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(18, 66, 101, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: black;
  margin: 0 10px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #08e1e9;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: black;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: black;
}

.pricing .box h4 {
  font-size: 42px;
  color: #08e1e9;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: black;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 4px;
  color: #08e1e9;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #08e1e9;
}

.pricing .box .btn-buy:hover {
  background: #08e1e9;
  color: #fff;
}

.pricing .featured {
  background: #08e1e9;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
  color: #fff;
}

.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .featured .btn-buy {
  color: #fff;
  border: 2px solid #fff;
}

.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #08e1e9;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #08e1e9;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #08e1e9;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: black;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #08e1e9;
  color: #fff;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8fbfe;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1a5e90;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer.footer {
  background: linear-gradient(180deg, #00335a 0%, #002b5c 100%); /* tom institucional */
  color: #eef6f9;
  font-size: 14px;
}

#footer .footer-logo {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Títulos */
#footer h5, #footer h6 {
  color: #ffffff;
}

/* Links */
#footer a {
  color: #eef6f9;
  text-decoration: none;
  transition: color .2s ease, transform .12s ease;
}
#footer a:hover, #footer a:focus {
  color: #00d1d1;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Botões sociais */
#footer .btn-outline-light {
  border: 1px solid rgba(255,255,255,0.9);
  padding: 8px 10px;
}
#footer .btn-outline-light i {
  font-size: 16px;
}
#footer .btn-outline-light:hover {
  background: #00d1d1;
  border-color: #00d1d1;
  color: #002b5c;
}

/* Separador */
#footer hr {
  opacity: 0.12;
  margin: 1rem 0 1rem;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  #footer .footer-logo {
    width: 140px;
  }
  #footer .social-links {
    margin-top: 8px;
  }
}


/* Vídeo de fundo */
#video-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none; /* evita bloquear cliques */
  opacity: 1; /* totalmente visível */
}

/* Overlay sobre o vídeo (escurecimento leve e transparente) */
#inicio::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 8, 17, 0.70); /* transparência sutil */
  z-index: 0;
  pointer-events: none;
}

/* Conteúdo sobre o vídeo */
#inicio .container {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* leve sombra para contraste */
  padding-top: 20vh;
}

/* Fallback em mobile/navegadores sem vídeo */
@media (max-width: 768px) {
  }
  #inicio {
    background: url('assets/img/video/videofundo.webp') center/cover no-repeat;
  }

.portfolio-item {
    height: 300px; /* Defina uma altura fixa para todos os itens do portfólio */
    display: flex; /* Permite que o conteúdo interno seja flexível */
    align-items: center; /* Centraliza verticalmente a imagem se ela for menor */
    justify-content: center; /* Centraliza horizontalmente a imagem */
    overflow: hidden; /* Garante que nada transborde do contêiner */
  }

  .portfolio-item img {
    width: 100%; /* Garante que a imagem preencha a largura do contêiner */
    height: 100%; /* Garante que a imagem preencha a altura do contêiner */
    object-fit: cover; /* Corta a imagem para preencher o contêiner mantendo a proporção */
    object-position: center; /* Centraliza a imagem dentro do contêiner */
  }

  .service-circle {
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 10px 30px rgba(16, 2, 2, 0.55), inset 0 1px 0 rgba(255,255,255,0.02);
  backdrop-filter: blur(6px) saturate(110%);
  border-radius: 25%;
  padding: 40px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px;
  width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-circle:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgb(7, 219, 226);
}

.service-icon {
  font-size: 40px;
  color: rgb(7, 219, 226);
  margin-bottom: 20px;
}

.service-circle h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-circle p {
  font-size: 14px;
  color:#f5f5f5;
}

/* teste */

:root{
  --bg-color: #071725;
  --accent: #00b0ff;
  --accent-2: #2fb8ff;
  --card-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.06);
  --text: #e9f5ff;
}

/* Reset mínimo útil para a section */
#hero-impression { position: relative; overflow: hidden; min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; background-color: var(--bg-color); }


/* Canvas por cima do background, sob o conteúdo */
#network-canvas{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  pointer-events: none; /* evita bloquear cliques */
}

/* Conteúdo central (glass) */
.hero-content { position: relative; z-index: 3; width: 100%; max-width: 1200px; display: flex; align-items: center; justify-content: center; padding: 2rem; box-sizing: border-box; }

.hero-card {
  width: min(980px, 96%);
  padding: 2.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(16, 2, 2, 0.55), inset 0 1px 0 rgba(255,255,255,0.02);
  backdrop-filter: blur(8px) saturate(120%);
  text-align: center;
}

/* Título com contorno/neon e gradiente sutil */
.hero-title{
  margin: 0 0 .6rem 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  color: var(--text);
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 0.8px rgba(0,0,0,0.6); /* contorno fino */
  text-shadow:
    0 1px 0 rgba(0,0,0,0.6),
    0 6px 24px rgba(43,150,255,0.06);
}

/* gradient accent inside a span */
.hero-title .accent{
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 .15em;
  text-shadow:
    0 4px 20px rgba(47,184,255,0.12);
  position: relative;
}

/* Glow outline for accent */
.hero-title .accent::after{
  content: "";
  position: absolute;
  left: -0.1em; right: -0.1em; top: -0.1em; bottom: -0.15em;
  border-radius: 6px;
  filter: blur(8px);
  opacity: 0.18;
  background: linear-gradient(90deg, rgba(7,219,226,0.35), rgba(7,219,226,0.35));
  z-index: -1;
}

/* Subtexto */
.hero-sub{
  margin: 0 auto;
  color: rgba(233,245,255,0.88);
  font-size: clamp(1rem, 1.6vw, 1.15rem); 
  max-width: 800px;
  margin-bottom: 1em;
  word-wrap: break-word;
  line-height: 1.5;
}

/* Botões */
.hero-ctas { display:flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }

.btn {
  font-family: inherit;
  font-weight: 700;
  border: 0;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 6px 22px rgba(2,8,16,0.45);
}

/* Primary button neon */
.btn-primary{
  background: #08e1e9;
  color: white;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  transform: translateZ(0);
}

.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 14px 40px rgba(0,176,255,0.16); }

/* Ghost button (outline) */
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
  padding: .72rem 1.2rem;
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(0,0,0,0.35); }

/* Responsividade */
@media (max-width: 880px){
  .hero-card { padding: 1.6rem; border-radius: 14px; }
  .hero-ctas { gap: .6rem; }
}

/* Accessibility: reduz animações para quem preferir */
@media (prefers-reduced-motion: reduce) {
  .btn, .hero-card, .hero-title, #network-canvas { transition: none !important; animation: none !important; }
  
}

.bg-custom {
  background-color: #a4dcec4d;
  
}

/* Temmplates */
:root{
  --bg-900: #08101a;
  --bg-800: #0e1624;
  --accent: #00eaff;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.06);
  --muted: rgba(255,255,255,0.75);
  --glass-blur: 10px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(2,8,20,0.6);
}

/* Section base */
.templates-section{
  background: linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 100%);
  color: #fff;
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
}

/* Title */
.section-heading{
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  margin-bottom: .5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.section-sub{
  color: rgba(255,255,255,0.64);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.accent{ color: var(--accent); }

/* Grid */
.templates-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

/* Responsividade */
@media (max-width: 1000px){
  .templates-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .templates-grid{ grid-template-columns: 1fr; padding: 0 1rem; }
}

/* Card (glass) */
.template-card{
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s;
  min-height: 420px; /* garante alinhamento */
  position: relative;
}

/* hover/focus */
.template-card:hover,
.template-card:focus-within{
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(2,8,20,0.7);
}

/* Media (imagem) */
.template-media img{
  display:block;
  width:100%;
  height: 240px;
  object-fit: cover;
  vertical-align: middle;
}

/* Conteúdo */
.template-content{
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: auto; /* empurra o conteúdo para baixo se necessário */
  background: linear-gradient(180deg, rgba(8,12,18,0.02), rgba(0,0,0,0.25));
}
.template-title{
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.template-desc{
  color: rgba(255,255,255,0.78);
  font-size: .95rem;
  line-height: 1.4;
  margin: 0;
}

/* Ações / Botões */
.template-actions{
  margin-top: .6rem;
  display:flex;
  gap:.6rem;
  align-items:center;
}

/* Botões alinhados ao padrão da hero */
.btn{
  display:inline-block;
  text-decoration:none;
  padding: .55rem .9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s;
}

/* Primário */
.btn-primary{
  background: linear-gradient(180deg, var(--accent), #00c2d6);
  color: #042025;
  box-shadow: 0 8px 18px rgba(0,200,230,0.12);
  border: none;
}
.btn-primary:hover{ transform: translateY(-3px); }

/* Ghost / outline */
.btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
}

/* CTA grande */
.templates-cta .btn-cta{
  margin-top: 0.5rem;
  background: var(--accent);
  color: #081018;
  padding: 0.85rem 1.7rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0,230,255,0.12);
}

/* foco acessível */
.btn:focus-visible, .template-card:focus-within{
  outline: 3px solid rgba(0,230,255,0.14);
  outline-offset: 4px;
}

/* ajuste final: pequenas bordas arredondadas na imagem para casar com o card */
.template-media img{ border-top-left-radius: calc(var(--radius)); border-top-right-radius: calc(var(--radius)); }

/* Se usar AOS com animações, ajuste performance */
[data-aos]{ will-change: transform, opacity; }

/* -----------------------------------------------------------
   Personalizado section – combina com templates/hero
   ----------------------------------------------------------- */
:root{
  --accent: #00eaff;
}

/* base da section (escuro, consistente com hero/templates) */
.personalizado-section{
  background: linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 100%);
  color: #fff;
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
}

/* título e lead */
.personalizado-title{
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  margin-bottom: .6rem;
  color: #ffffff;
}
.personalizado-lead{
  color: rgba(255,255,255,0.86);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.personalizado-title .accent{ color: var(--accent); }

/* container da imagem */
.personalizado-media{
  width: 100%;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2,8,20,0.6);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06)); /* placeholder suave */
}

/* ajuste direto na imagem para diminuir visual e cortar apropriadamente */
.personalizado-img{
  display: block;
  width: 100%;
  height: 260px;        /* <<< imagem menor no desktop */
  object-fit: cover;
  vertical-align: middle;
  background-color: #071018; /* fallback escuro se img não carregar */
  transition: transform .28s ease, box-shadow .28s ease;
}

/* hover sutil somente se houver espaço */
.personalizado-media:hover .personalizado-img,
.personalizado-media:focus-within .personalizado-img{
  transform: translateY(-6px);
}

/* lista de features */
.feature-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .8rem;
}
.feature-list li{
  display: flex;
  gap: .8rem;
  align-items: center;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: .98rem;
}

/* ícone */
.feature-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0,234,255,0.10), rgba(0,200,214,0.04));
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,200,230,0.05);
}

/* botões */
.personalizado-cta .btn{
  font-weight: 700;
  border-radius: 12px;
  padding: .6rem 1rem;
}
.btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  padding: .6rem .95rem;
}
.btn-ghost:hover{ transform: translateY(-3px); border-color: rgba(255,255,255,0.12); }

/* foco acessível */
.personalizado-cta .btn:focus-visible,
.feature-list li:focus-visible{
  outline: 3px solid rgba(0,230,255,0.12);
  outline-offset: 4px;
}

/* responsividade: imagem um pouco maior em tablets; empilha na vertical no celular */
@media (max-width: 992px){
  .personalizado-img{ height: 320px; }
  .personalizado-section{ padding-top: 48px; padding-bottom: 48px; }
}
@media (max-width: 640px){
  .personalizado-img{ height: 220px; }
  .personalizado-title{ font-size: 1.5rem; }
  .personalizado-lead{ font-size: .98rem; }
}
