/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --branco-suave: #F8F9F4;
    --azul-medio: #2A4691;
    --azul-escuro: #1B306B;
    --vermelho-vibrante: #F22727;
    --vermelho-intenso: #DE0000;
    --cinza-claro: #f5f5f5;
    --cinza-medio: #353535;
    --sombra: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--branco-suave);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: #DE0000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--sombra);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--vermelho-vibrante);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}
#planocelular {
        display: none;  /* ou flex, conforme o layout */
    }
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--azul-medio) 0%, var(--azul-escuro) 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px; /* bordas arredondadas que recortam o carrossel */
}

.hero-image .carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

    .hero-image img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    display: block;
    }

.hero-image .prev,
.hero-image .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image .prev { left: 15px; }
.hero-image .next { right: 15px; }

/* Buttons */
.botao vermelho{
        background-color: var(--vermelho-intenso);
          
        border-color: var(--vermelho-intenso);
}
.botao:hover {
  background-color: darkred !important;
  border-color: darkred !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: white;
    color: var(--azul-escuro);
}

.btn-primary:hover {
    color: #f5f5f5;
    background-color: rgba(103, 103, 151, 0.308);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 55, 73, 0.438);
}

.btn-secondary {
    background-color: white;
    color: var(--azul-escuro);
}
.btn-secondary:hover{
    color: #f5f5f5;
    background-color: rgba(103, 103, 151, 0.308);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 55, 73, 0.438);
    
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background-color: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--azul-escuro);
    margin-bottom: 1.5rem;
}

.sobre p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--cinza-medio);
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--azul-medio);
    font-weight: 700;
}

.stat p {
    font-size: 0.9rem;
    color: var(--cinza-medio);
    margin: 0;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px var(--sombra);
}

/* Operadoras Section */
.operadoras {
    padding: 80px 0;
    background-color: var(--cinza-claro);
}

.operadoras h2 {
    font-size: 2.5rem;
    color: var(--azul-escuro);
    text-align: center;
    margin-bottom: 1rem;
}

.operadoras p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 3rem;
}

.operadoras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.operadora-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--sombra);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}


.operadora-card:hover {
    transform: translateY(-5px);
}

.operadora-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
}

/* Produtos Section */
.produtos {
    padding: 80px 0;
    background-color: white;
}

.produtos h2 {
    font-size: 2.5rem;
    color: var(--azul-escuro);
    text-align: center;
    margin-bottom: 1rem;
}

.produtos p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 3rem;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.produto-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--sombra);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
}

.produto-image {
    height: 200px;
    overflow: hidden;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;     /* Empilha verticalmente */
    justify-content: space-between;
}

.produto-content h3 {
    font-size: 1.5rem;
    color: var(--azul-escuro);
    margin-bottom: 1rem;
}

.produto-content p {
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
}

.produto-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.produto-content li {
    padding: 0.5rem 0;
    color: var(--cinza-medio);
    position: relative;
    padding-left: 1.5rem;
}

.produto-content li:before {
    content: "✓";
    color: var(--vermelho-vibrante);
    font-weight: bold;
    position: absolute;
    left: 0;
}

#botaosolicitar {
  display: block;      /* força o botão a ocupar linha inteira */
  margin: 0 auto;      /* centraliza horizontalmente */
  text-align: right;  /* garante alinhamento do texto */
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--azul-medio) 0%, var(--azul-escuro) 100%);
    color: white;
}

.contato h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.contato > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px); 
}

.contato-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contato-item p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contato-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contato-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contato-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #DE0000;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo img {
    
    height: 40px;
    width: auto;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0.25rem 0;
}

    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 9999;
    }

    .whatsapp-float a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background-color: #25D366; /* verde oficial */
      border-radius: 50%;
      color: #fff;
      font-size: 28px;
      text-decoration: none;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    .whatsapp-float a:hover {
      transform: scale(1.1);
      background-color: #1ebe5d;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-icon {
      font-size: 1.8rem;
    }

    /* Animação de pulso */
    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
      }
      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);
      }
    }
    
    .bg-azul-escuro {
    background-color: var(--azul-escuro);
    color: white;
    text-align: center;
    align-self: center;

    }

    
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--azul-medio);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    #planocelular {
        display: block;  /* ou flex, conforme o layout */
    }
    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sobre-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contato-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);    
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }



}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .operadoras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .operadora-card {
        padding: 1rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

