/*Correção global para evitar overflow*/
html, body {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 100px; /* Ajustado de acordo com a altura do topo fixo */
}

*, *::before, *::after {
  box-sizing: inherit;
}


/* Estilo para a página de pacotes de implantação */
body {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
    color: white;
    font-family: 'Arial', sans-serif;
    margin: 0;
    
}

/* Ajuste do container principal */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 100%;
  padding: 2rem;
  margin: 40px auto;
}


/* Banner Implantação */
.banner-implantacao {
    background: linear-gradient(135deg, #39FF14, #1e3c72, #ffd900);
    border: 2px solid #ffd900;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.banner-implantacao .plan-title {
    font-size: 24px;
    font-weight: bold;
    color: black;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.banner-implantacao .current-price {
    font-size: 32px;
    font-weight: bold;
    color: black;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.banner-implantacao .cta-button {
    background: linear-gradient(135deg, #06ffa5, #FFC107, #FF8F00);
    color: black;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}
.banner-implantacao .cta-button:hover {
    background: linear-gradient(135deg, #06ffa5, #FF8F00, #FFC107);
    transform: translateY(-2px);
    filter: brightness(1.2);
}

/* Banner Implantação*/


/* Design 1 - Cyber Neon Start */
.banner-1 {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    animation: glow1 2s ease-in-out infinite alternate;
}

.banner-1::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    border-radius: 15px;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.banner-1::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
    border-radius: 13px;
    z-index: -1;
}

/* Design 2 - Electric Blue Start */
.banner-2 {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border: 3px solid #29123f;
    border-radius: 25px;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 50px rgba(30, 60, 114, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: electricPulse 2.5s ease-in-out infinite alternate;
    overflow: hidden;
}

.banner-2::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: scan 3s ease-in-out infinite;
}

.banner-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: sweep 4s ease-in-out infinite;
}

/* Design 3 - Miami Vice Prime */
.banner-3 {
    background: linear-gradient(135deg, #242525 0%, #29123f 100%);
    border: 3px solid #29123f;
    border-radius: 25px;
    padding: 30px;
    position: relative;
    background-clip: border-box;
    box-shadow: 0 0 40px rgba(118, 75, 162, 0.5);
    overflow: hidden;
}

.banner-3::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #ff006e, #695386, #3a86ff, #06ffa5, #ffbe0b, #ff006e);
    border-radius: 25px;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.banner-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

/* Design 4 - Dark Neon Prime */
.banner-4 {
    background: linear-gradient(135deg, #0c0c0c, #1a1a1a, #2d2d2d);
    border: 2px solid #39ff14;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.3),
                inset 0 0 20px rgba(57, 255, 20, 0.05);
    animation: greenGlow 2s ease-in-out infinite alternate;
    overflow: hidden;
}

.banner-4::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #39ff14, transparent);
    animation: sweep 3s ease-in-out infinite;
}

.banner-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(57, 255, 20, 0.03) 2px,
        rgba(57, 255, 20, 0.03) 4px
    );
    border-radius: 13px;
}

/* Common Styles */
.plan-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.plan-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px #ffd700);
}

.plan-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px currentColor;
}

.plan-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.price-section {
    margin-bottom: 25px;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.current-price {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 15px currentColor;
}

.price-period {
    font-size: 16px;
    opacity: 0.8;
}

.cta-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.banner-1 .cta-button {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.banner-2 .cta-button {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.banner-3 .cta-button {
    background: linear-gradient(45deg, #8338ec, #3a86ff);
    color: white;
    box-shadow: 0 5px 15px rgba(131, 56, 236, 0.4);
}

.banner-4 .cta-button {
    background: linear-gradient(45deg, #39ff14, #32cd32);
    color: black;
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.features {
    list-style: none;
}

.features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.features li::before {
    content: '✔'; /* Símbolo de check correto */
    position: absolute;
    left: 0;
    font-weight: bold;
    text-shadow: 0 0 5px currentColor;
}

.banner-1 .features li::before { color: #00ffff; }
.banner-2 .features li::before { color: #00d4ff; }
.banner-3 .features li::before { color: #8338ec; }
.banner-4 .features li::before { color: #39ff14; }

.section-title {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 10px 0;
    text-shadow: 0 0 10px currentColor;
}

/* Cores específicas para cada banner */
.banner-implantacao .section-title { color: #ffd900; }
.banner-1 .section-title { color: #00ffff; }
.banner-2 .section-title { color: #00d4ff; }
.banner-3 .section-title { color: #0099cc; }
.banner-4 .section-title { color: #39ff14; }

/* Animations */
@keyframes glow1 {
    from { box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); }
    to { box-shadow: 0 0 50px rgba(0, 255, 255, 0.6); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes electricPulse {
    from { box-shadow: 0 0 50px rgba(30, 60, 114, 0.8); }
    to { box-shadow: 0 0 70px rgba(0, 212, 255, 0.8); }
}


@keyframes scan {
    0% { transform: translateY(0px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(300px); opacity: 0; } /* Ajuste menor */
}


@keyframes sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

@keyframes greenGlow {
    from { box-shadow: 0 0 40px rgba(57, 255, 20, 0.3); }
    to { box-shadow: 0 0 60px rgba(57, 255, 20, 0.6); }
}

.cta-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

/* Responsividade */

/* Celulares */
@media only screen and (max-width: 600px) {
    main {
        padding-top: 140px; /* Ajuste para o topo fixo */
    }

    .container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 1rem;
    }

    .cta-button {
        font-size: 14px;
        padding: 12px;
    }
}

/* Tablets */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
  .container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 1rem 1.5rem;
  }

  .plan-title {
    font-size: 22px;
  }

  .current-price {
    font-size: 30px;
  }
}

/* Desktops */
@media only screen and (min-width: 1025px) {
  .container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 2rem;
  }

  .plan-title {
    font-size: 24px;
  }

  .current-price {
    font-size: 32px;
  }
}
