body {
  font-family: "Open Sans", sans-serif;
  color: #00013B;
  background: linear-gradient(45deg, #ffffff, #f5f5f5, #ffffff);
  background-size: 100% 300%;
  animation: gradientAnimation 10s infinite linear;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

p {
   color: #000000;
}

.whatsapp-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: green;
  color: #fff;
  font-size: 40px;
  margin-top: 2%;
  text-decoration: none;
  border-radius: 10px;
}

.whatsapp-button:hover {
  background-color: #4caf50;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", Sans-serif;
  color: #c7a557;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 997;
  background: transparent;
  transition: top 0.3s ease-in-out;

}

#secondary-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 997;
  background: #000000 ;
  transition: top 0.3s ease-in-out;

}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
  margin-right: 5px;
}

#secondary-header .logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
  margin-right: 5px;
}

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

@media (max-width: 992px) {
  #header {
    height: 90px;
  }
}

.scrolled-offset {
  margin-top: 0px;
}

@media (max-width: 992px) {
  .top {
    margin-top: 75px !important;
  }
}

@media (min-width: 992px) {
  .top {
    margin-top: 70px !important;
  }
}


.top {
  margin-top: 100px;
}

@media (max-width: 992px) {
  #top-bar {
    display: none !important; 
  }
}

.navbar {
  padding: 0;
  margin-top: 10px;
}

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

.navbar ul li a {
  display: flex;
  align-items: center;
  text-shadow: 0 0 1px rgb(247, 216, 111) ;
  transition: all 0.3s ease;
  gap: 8px; 
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.navbar li {
  position: relative;
}

.navbar a {
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #151515;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: #c7a557  !important;
}

.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: #000000 ;
  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: 15px;
  text-transform: none;
  font-weight: 600;
}

.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: #7cc576;
}

.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: #c7a557;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
      display: block;
      color: #c7a557;
  }
}

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

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

footer{
  margin-top: 70px;
}

.address-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1200px) {
  #header-adress {
    display: none !important;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: #030303;
  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: #050505;
  color: #fdfdfd;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.navbar-mobile .getstarted {
  margin: 5px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #1a1919 ;
  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: #4e5360;
}

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

.title {
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.buttom {
  color: #ffffff;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

video {
  filter: brightness(0.18);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que o vídeo cubra toda a área sem distorção */
  transform: translate(-50%, -50%);
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero .hero-logo img {
  width: 170px;
  height: 145px;
  margin-bottom: 30px;
}

#hero h1 {
  margin: -50px 0 22px 0;
  font-weight: 600;
  color: #c7a557;
  font-family: "Poppins", Sans-serif;
  font-size: 85px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.45);
}

#hero h2 {
  color: #fff;
  font-family: "Poppins", Sans-serif;
  margin-bottom: 24px;
  margin-left: 26px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.45);
}

.logo-title-wrapper {
  display: flex;
  align-items: end;
  gap: 0.5rem;
}

.logo-image {
  height: 160px;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .logo-title-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
  }

  .logo-image {
    height: 100px;
    margin-top: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 51, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(0, 51, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 51, 102, 0);
  }
}

#hero .btn-get-started {
  margin-top: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #c7a557 ; 
  color: white;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  animation: pulse 2s infinite;
}

#hero .btn-get-started svg {
  width: 28px;
  height: 28px;
}

/* Animação do brilho */
@keyframes glowing {
  0% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.9);
  }
}

#hero .btn-whatsapp {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  margin: 10px;
  margin-top: 50px;
  font-weight: 400;
  color: rgb(230, 238, 229);
  background: green;
}

#hero .btn-whatsapp:hover {
  transition: 0.5s;
  background: rgb(6, 180, 6);
  color: rgb(230, 238, 229);
}

#hero .btn-get-started:hover {
  transform: scale(1.05);
  font-size: 22px;
  color: #fff;
}

.btn-contact {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  color: rgb(230, 238, 229);
  background: #4e5360;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
}

.btn-contact:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); 
  color: rgb(230, 238, 229); 
  text-decoration: none; 
  transform: scale(1.1); 
}

.button-contact-mobile{
  margin-left: 60px; 
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .btn-contact {
    width: 80% !important;
  }

  .button-contact-mobile{
    margin-left: 35px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
  

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 833px) {

  #hero .hero-container {
    bottom: 15%;
  }

  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }
  #hero h2 {
    line-height: 22px;
    color: #fff;
    font-family: "Poppins", Sans-serif;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
  }

  #hero .btn-whatsapp {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    margin: 10px;
    font-weight: 400;
    color: rgb(230, 238, 229);
    background: green;
  }

  #hero .btn-get-started {
    margin-top: 20%;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 16px;
    border-radius: 40px;
    color: #fff;
    font-weight: bold;
    margin-bottom: -45%;
}

}

section {
  padding: 60px 0;
  padding-top: 0px;
  overflow: hidden;
}

#contato {
  padding: 55px 0 !important;
  padding-top: 60px !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
    padding-top: 20px;
    overflow: hidden;
  }
}

.section-bg {
  background-color: #c7a557 ;
  margin-top: 20px;
}

.section-title {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 40px;
}

.section-title-content {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 0px;
}

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

.about .image {
  padding: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

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

.about .content p:last-child {
  margin-bottom: 0;
}

.services .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.services .icon-box i {
  font-size: 48px;
  float: left;
  color: #c7a557;
  margin-top: -10px;

}

.services .icon-box p {
  font-size: 15px;
  color: #000000;
  margin-left: 60px;
  margin-right: 60px;
}

.services .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.acting .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid #fff;
}

.acting .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #151515;
}

.acting .box h4 {
  font-size: 42px;
  color: #151515;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.acting .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.acting .box ul {
  padding: 0;
  list-style: none;
  color: #151515;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.acting .box ul li {
  padding-bottom: 16px;
}

.acting .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.acting .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.acting .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 5px;
  border: 2px solid #4e5360;
  color: #4e5360;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.acting .box .btn-buy:hover {
  background: #4e5360;
  color: #fff;
}

.acting .recommended {
  border-color: #4e5360;
}

.acting .recommended .btn-buy {
  background: #4e5360;
  color: #fff;
}

.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

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

@media (max-width: 768px) {
  .footer{
    display: flex;
    padding: 10px;
    flex-direction: column;
    font-size: 16px;
    color: #fff; 
    text-decoration: none; 
  }

  .footer a{
    font-size: 16px;
    color: #fff; 
    text-decoration: none; 
    padding: 30px;
    text-align: center;
  }
  
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

.social_footer_ul {
  display: table;
  margin: 0 auto 0 auto;
  list-style-type: none;
  padding-left: 0px;
}
.social_footer_ul li {
  padding-left: 20px;
  padding-top: 10px;
  float: left;
}
.social_footer_ul li a {
  color: #4e5360;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 50%;
}
.social_footer_ul li i {
  font-size: 20px;
  width: 22px;
  height: 20px;
  text-align: center;
}

footer p{
  text-align: center;
  margin-top: 70px;
  color: #fff;
}

.social {
  text-align: center;
  margin-bottom: 20px;
}

.list-inline {
  text-align: center;
}

.list-inline-item {
  display: inline-block;
  margin-right: 20px;
}

.list-inline-item:last-child {
  margin-right: 0;
}

.footer-basic p {
  text-align: center;
  margin-top: 20px;
}

.contact {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.back-to-top {
  background-color: #070707;
  color: #fff;
  border-radius: 50px;
  position: fixed;
  visibility: hidden; 
  opacity: 0;
  right: 15px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  bottom: 15px;
  z-index: 996;
  width: 60px;
  height: 60px;
}

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

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

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

.social-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.social-icon.active {
  visibility: visible;
  opacity: 1;
}

.social-icon:hover {
  transform: scale(1.1);
}

.fab.fa-whatsapp { color: #25D366; }
.fab.fa-instagram { color: #E1306C; }
.fab.fa-linkedin { color: #0077B5; }
.fab.fa-youtube { color: #FF0000; }
.fas.fa-envelope { color: #D44638; }

.service-margin {
  margin-left: 42px;
  margin-right: 45px;
}

#experiencia input.form-control {
  background-color: #fff;
  border: none;
  color: white;
}
#experiencia input.form-control::placeholder {
  color: #c7a557 ;
}
#experiencia input[type="radio"]:checked + img {
  opacity: 1 !important;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  h2[aria-label="Título da seção: Sobre o Dr. Pedro Veras"] {
    margin-top: 80px; 
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(247, 247, 51, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse-success {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(49, 248, 105, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.btn-pulse-success {
  animation: pulse-success 2s infinite;
}