/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 70vh;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 50vh;
    }
}


    
    .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #0066cc;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-icon.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-icon.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
        position: absolute;
        right: 2rem;
        top: 1.5rem;
    }
    
    .logo {
        position: relative;
        z-index: 1001;
        margin-right: auto; /* Empurra o logo para a esquerda */
        padding-left: 1rem; /* Adiciona um pequeno espaçamento */
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 1rem 0;
    }
}
    
    nav ul {
        display: flex;
        list-style: none;
    }
    
    nav ul li {
        margin-left: 1.5rem;
    }
    
    nav ul li a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
    }
    
    nav ul li a:hover {
        color: #0066cc;
    }
    
    /* Seções */
    section {
        padding: 1rem 1rem;
        scroll-margin-top: 80px;
    }
    
    h2 {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 3rem;
        color: #0066cc;
    }
    
    /* Hero Section */
    .hero {
         height: 100vh; /* Remove completamente o espaço */
         overflow: hidden;
         margin-top: 0; /* Sem margem superior */
         padding: 0 0;
        display: flex;
        align-items: center;
    }
    
    /* Swiper Styles */
    .swiper-container {
        width: 100%;
        height: 100%;
    }
    
    .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .swiper-slide img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.5;
    }
    
    .swiper-pagination-bullet-active {
        background: #007aff;
        opacity: 1;
    }
    
    .swiper-button-next, .swiper-button-prev {
        color: #fff;
    }
    
    .carousel-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    
    .carousel-slide.active {
        opacity: 1;
    }
    
    .carousel-slide img {
        width: 100%;
        height: 115%;
        object-fit: cover;
        border-radius: 0;
    }
    
    .hero-content {
        width: 50%;
        color: #333;
        background-color: #e6f2ff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    
    .cta-button {
        display: inline-block;
        background-color: #0066cc;
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    
    .cta-button:hover {
        background-color: #0052a3;
    }
    
    /* Seções */
    section {
        padding: 1rem 1rem;
    }
    
    h2 {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 3rem;
        color: #0066cc;
    }
    
    /* Benefícios */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
        gap: 1rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .benefit-item {
        text-align: center;
        padding: 2rem;
        border-radius: 10px;
        background-color: #f9f9f9;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item h3 {
        margin-bottom: 1rem;
        color: #333;
    }
    
    .benefit-item p {
        color: #666;
        font-size: 1rem;
    }
    
    
    /* Para Quem */
    .audience-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .audience-item {
        padding: 2rem;
        border-radius: 10px;
        background-color: #f9f9f9;
    }
    
    .audience-item h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #0066cc;
    }
    
    .audience-item ul {
        margin-top: 1rem;
        padding-left: 1.5rem;
    }
    
    .audience-item ul li {
        margin-bottom: 0.5rem;
    }
    
    /* Como Funciona */
    .steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .step {
        text-align: center;
        padding: 2rem;
    }
    
    .step-number {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: #0066cc;
        color: white;
        border-radius: 50%;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }
    
    .step h3 {
        margin-bottom: 1rem;
        color: #333;
    }
    
    /* Planos */
    .plans-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .plan-item {
        padding: 2rem;
        border-radius: 10px;
        background-color: #f9f9f9;
        position: relative;
    }
    
    .plan-item.featured {
        border: 2px solid #0066cc;
    }
    
    .featured-badge {
        position: absolute;
        top: -15px;
        right: 20px;
        background-color: #0066cc;
        color: white;
        padding: 0.3rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }
    
    .plan-item h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #0066cc;
    }
    
    .plan-price {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #333;
    }
    
    .plan-item ul {
        margin-bottom: 2rem;
        padding-left: 1.5rem;
    }
    
    .plan-item ul li {
        margin-bottom: 0.5rem;
    }
    
    .plan-button {
        display: inline-block;
        background-color: #0066cc;
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    
    .plan-button:hover {
        background-color: #0052a3;
    }
    
    .equipamentos {
      text-align: center;
      background-color: #f9f9f9;
    }
    
    .equipamentos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 5px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    :root {
        --header-height: 60px;
    }
    
    .equipamento {
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    @media (max-width: 768px) {
        
    }
    .equipamento:hover {
      transform: translateY(-5px);
    }
    
    .equipamento img {
      width: 100%;
      max-height: 350px;
      object-fit: contain;
      border-radius: 4px;
    }
    
    .localidades {
      padding: 40px 0;
      text-align: center;
    }
    
    .cidades {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .cidade {
      background: #e6f2ff;
      padding: 12px 20px 12px 15px;
      border-radius: 20px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .cidade svg {
      flex-shrink: 0;
      color: #0066cc;
    }
    
    /* Rodapé */
    .footer {
        background-color: #333;
        color: white;
        padding: 3rem 2rem 1rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: #fff;
    }
    
    .footer-section ul {
        list-style: none;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-section ul li a:hover {
        color: #fff;
    }
    
    .social-icons {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .social-icons a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .social-icons a:hover {
        color: #fff;
    }
    
    .footer-button {
        display: inline-block;
        background-color: #0066cc;
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    
    .footer-button:hover {
        background-color: #0052a3;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #555;
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
        .header {
            flex-direction: column;
            padding: 1rem;
        }
        
        nav ul {
            margin-top: 1rem;
        }
        
        nav ul li {
            margin-left: 1rem;
        }
        
        section {
            padding: 1rem 1rem;
        }
        
        
        
        .carousel-container {
            height: 100vh;
        }
        
        .carousel-slide img {
            height: 100vh;
            width: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .hero-content {
            width: 80%;
        }
    }
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    @keyframes shake {
       0%, 100% { transform: translateX(0); }
       25% { transform: translateX(-3px); }
       50% { transform: translateX(3px); }
       75% { transform: translateX(-3px); }
     }
    
    .whatsapp-float {
      animation: none;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.05);
      transition: transform 0.2s ease;
    }
    
    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }
    
    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }

/* Efeito pulse para o botão do WhatsApp */
.whatsapp-float {
  animation: pulse 2s infinite;
}

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