body, html { height: 100%; margin: 0; overflow: hidden !important;  background: url('../img/bg.png') no-repeat center center; background-size: cover; }
    .navbar {
      background: #fff;
      height: 80px;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.9));
      -webkit-filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.9));
    }
    .navbar .nav-link {
      color: #333;
      position: relative;
      padding: 0.5rem 1rem;
      transition: all 0.3s ease;
    }
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
      color: #9c27b0 !important;
    }
    .navbar .nav-link.active {
      font-weight: 600;
    }
    .navbar .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background-color: #9c27b0;
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    .navbar .nav-link:hover::after {
      width: 60%;
    }
    .logo {
      height: 50px;
    }
    .hero-section {
      color: #fff;
      min-height: calc(100vh - 56px);
      display: flex;
      align-items: flex-start;
      padding-top: 100px;
    }
    .hero-section h1 {
      font-size: 3rem;
      font-weight: bold;
    }
    .hero-section p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }
    .carousel-overlay {
      background-color: #fff;
      padding: 2rem;
      border-radius: 10px;
      height: 650px;
      display: flex;
      align-items: center;
      margin-left: auto; /* Adiciona margem nas laterais */
      margin-right: auto;
    }
    .carousel-item .container {
      padding: 0;
      border-radius: 0;
    }
    .btn-cta {
      background: #9c27b0;
      color: #fff !important;
      padding: 0.75rem 2rem;
      border: none;
      border-radius: 50px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform: translateY(0) translateZ(0);
      will-change: transform, box-shadow;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
      -webkit-filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
    }
    
    .btn-cta:hover,
    .btn-cta:focus {
      transform: translateY(-6px) translateZ(0);
      opacity: 0.9;
      background-color: #9c27b0;
    }
    
    .btn-cta:active {
      transform: translateY(2px) translateZ(0);
      transition: all 0.1s ease;
      background-color: #9c27b0 !important;
    }

    .btn-cta::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.5);
      opacity: 0;
      border-radius: 100%;
      transform: scale(1, 1) translate(-50%, -50%);
      transform-origin: 50% 50%;
    }
    .btn-cta:focus:not(:active)::after {
      animation: ripple 1s ease-out;
    }
    @keyframes ripple {
      0% {
        transform: scale(0, 0);
        opacity: 0.5;
      }
      100% {
        transform: scale(100, 100);
        opacity: 0;
      }
    }
    .illustration {
      max-width: 350px;
      max-height: 350px;
      height: 270px;
      width: 350px;
      animation: float 3s ease-in-out infinite;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.9));
      -webkit-filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.9));
    }

    .illustration2 {
      max-width: 350px;
      max-height: 350px;
      height: 350px;
      width: 350px;
      animation: float 3s ease-in-out infinite;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.9));
      -webkit-filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.9));
    }
    
    .wave-image {
      position: relative;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      overflow: visible;
      animation: float 3s ease-in-out infinite;
      margin: 0 auto;
      background: transparent;
    }
    
    .wave-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 1;
      transition: opacity 0.2s ease;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.9));
      -webkit-filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.9));
    }
    
    .wave-image:hover img {
      opacity: 0.9;
    }

    .circle img {
      border-radius: 50%;
    }

    .carousel-inner {
      filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.9));
      -webkit-filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.9));
    }
    @keyframes float { 0%,100%{transform: translateY(0);} 50%{transform: translateY(-10px);} }


    .carousel-indicators-container {
      position: absolute;
      bottom: 35px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      z-index: 2;
    }
    .carousel-indicators {
      position: static;
      margin: 0;
      padding: 10px;
      background-color: rgba(0, 0, 0, 0.3);
      border-radius: 20px;
      display: inline-flex;
    }
    .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin: 0 5px;
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    .carousel-indicators .active {
      background-color: #9c27b0;
      transform: scale(1.2);
      opacity: 1;
    }
    /* Esconder setas de navegação */
    .carousel-control-prev,
    .carousel-control-next {
      display: none !important;
    }
    
    /* Cor do texto para todos os itens do carrossel */
    .text-rx {
      color: #9c27b0 !important;
    }
    .text-gray {
      color: #6c6c6c !important;
    }
    
    /* Efeito de destaque para todos os botões do carrossel */
    .carousel .btn-cta {
      animation: pulse 2s infinite;
      position: relative;
      z-index: 1;
    }

    .circle {
      border-radius: 50%;
      width: 350px;
      height: 350px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }
    
    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.7);
      }
      70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(156, 39, 176, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(156, 39, 176, 0);
      }
    }

    .fw-bold {
      font-size: 27px;
    }

/* Iphone 12 pro e s24 */
@media (max-width: 992px) {
    .carousel-inner {
      padding: 0 12px;
    }
    
    .carousel-item {
      display: none;
      text-align: center;
    }
    
    .carousel-item.active {
      display: block;
    }

    .carousel-overlay {
      margin: 0 auto;
      max-width: 100%;
      text-align: center;
    }
    
    .carousel-overlay .row {
      flex-direction: column;
    }
    
    .carousel-overlay .col-md-5 {
      order: -1;
      margin-bottom: 20px;
    }
    
    .carousel-overlay .illustration {
      max-width: 200px;
      max-height: 150px;
      margin: 0 auto;
    }

    .carousel-overlay .illustration2 {
      max-width: 200px;
      max-height: 180px;
      margin: 0 auto;
    }
    
    .hero-section {
      padding-top: 25px;
    }

    .hero-section h1 {
      font-size: 25px !important;
    }

    .hero-section p {
      font-size: 15px !important;
    }

    .fw-bold {
      font-weight: bold !important;
      font-size: 20px !important;
    }

    .navbar-toggler:focus {
      border-color: #72a !important;
      box-shadow: none !important;
      border: 2px solid #72a !important;
    }
    
    .navbar-collapse {
      background-color: #fff;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      z-index: 9999;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .navbar {
      position: relative;
      z-index: 1000;
    }
    
    .navbar-collapse .navbar-nav {
      flex-direction: column;
      align-items: flex-start !important;
    }
    
    .navbar-collapse .nav-item {
      width: 100%;
      text-align: center;
    }
    
    .navbar-collapse .nav-link,
    .navbar-collapse .btn-cta {
      padding: 10px 0;
      width: 100%;
      display: block;
    }

    .btn-cta {
      box-shadow: none !important;
    }

    .navbar-collapse .nav-item .nav-link.active {
      text-decoration: none;
    }

    .navbar-red-bg {
      background-color: #9c27b0 !important;
    }

    .navbar-red-bg .fw-bold {
      color: #fff !important;
    }

    .navbar-red-bg .navbar-toggler-icon {
      filter: brightness(0) invert(1);
    }

    .navbar-red-bg .navbar-toggler {
      border-color: #fff !important;
    }

    .nav-link::after {
      background-color: transparent !important;
    }
}
