/* ==================== ESTILOS BASE (DESKTOP) ==================== */

.promocao-banner {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 0.7fr;
    min-height: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    font-family: 'Alibaba Sans', sans-serif;
    overflow: visible;
    margin-top: 100px;
    background: #0033ff;
}

/* Seção Azul - Esquerda */
.secao-azul {
    background: #0033ff;
    color: white;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.secao-azul h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.secao-azul p {
    font-size: 1.15em;
    line-height: 1.6;
    font-weight: 400;
}

/* Seção Laranja - Centro */
.secao-laranja {
    background: #ff6600;
    color: white;
    clip-path: polygon(
      0 0, 
      calc(100% - 50px) 0, 
      100% 50px, 
      100% 100%, 
      50px 100%, 
      0 calc(100% - 50px)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    width: auto;
    min-height: calc(100% + 100px);
    margin-top: -50px;
    margin-bottom: -40px;
    z-index: 3;
    filter: drop-shadow(0 0 0 8px #000);
    overflow: visible;
}

/* Borda esquerda */
.secao-laranja::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: white;
    z-index: 1;
}

/* Borda direita */
.secao-laranja::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: white;
    z-index: 1;
}

.secao-laranja-topo {
    font-size: 1.3em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Alibaba Sans', sans-serif;
}

.preco-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: -25px 0;
    overflow: visible;
    position: relative;
}

.cifrao {
    background: white;
    top: 50%;
    left: 49%;
    color: #ff6600;
    border-radius: 50%;
    width: 60px;
    position: absolute;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    transform: translate(-50%, -50%);
    z-index: 100;
    overflow: visible;
}

.preco-grande {
    font-size: 15em;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -18px;
    margin-left: 20px;
    font-family: 'Alibaba Sans', sans-serif;
}

.preco-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 10px;
    height: 100%;
}

.preco-centavos {
    font-size: 5em;
    font-weight: 900;
    line-height: 1.5;
}

.preco-mes {
    font-size: 3em;
    font-weight: 400;
    line-height: 1;
}

.preco-duracao {
    font-size: 0.9em;
    font-weight: 500;
    margin-top: 5px;
}

.secao-laranja-rodape {
    font-size: 1.4em;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 2px;
}

/* Seção Azul - Direita (WhatsApp) */
.secao-whatsapp {
    background: #0033ff;
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -30px;
}

.whatsapp-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon i {
    font-size: 4em;
    color: #ff6600;
}

.whatsapp-texto {
    font-size: 1.8em;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* ==================== RESPONSIVIDADE ==================== */

/* Tablets grandes (1200px) */
@media (max-width: 1200px) {
    .promocao-banner {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .secao-azul,
    .secao-whatsapp {
        clip-path: none;
        margin-left: 0;
    }

    .secao-laranja {
        clip-path: polygon(
          0 0, 
          calc(100% - 40px) 0, 
          100% 40px, 
          100% 100%, 
          40px 100%, 
          0 calc(100% - 40px)
        );
        margin-top: 0;
        margin-bottom: 0;
        min-height: auto;
        padding: 40px 30px;
        filter: drop-shadow(0 0 0 6px #000);
    }

    .secao-azul h1 {
        font-size: 2.5em;
    }

    .secao-azul p {
        font-size: 1.1em;
    }

    .preco-grande {
        font-size: 12em;
        letter-spacing: -15px;
    }

    .preco-centavos {
        font-size: 4.5em;
    }

    .preco-mes {
        font-size: 2.5em;
    }

    .cifrao {
        width: 55px;
        height: 55px;
        font-size: 1.7em;
    }

    .secao-laranja-topo {
        font-size: 1.2em;
    }

    .secao-laranja-rodape {
        font-size: 1.3em;
    }
}

/* Tablets (900px) */
@media (max-width: 900px) {
    .promocao-banner {
        margin-top: 50px;
    }

    .secao-azul {
        padding: 35px 40px;
    }

    .secao-azul h1 {
        font-size: 2.2em;
    }

    .secao-azul p {
        font-size: 1.05em;
    }

    .secao-laranja {
        padding: 35px 25px;
        clip-path: polygon(
          0 0, 
          calc(100% - 35px) 0, 
          100% 35px, 
          100% 100%, 
          35px 100%, 
          0 calc(100% - 35px)
        );
        filter: drop-shadow(0 0 0 5px #000);
    }

    .preco-grande {
        font-size: 10em;
        letter-spacing: -12px;
    }

    .preco-centavos {
        font-size: 4em;
    }

    .preco-mes {
        font-size: 2.2em;
    }

    .cifrao {
        width: 50px;
        height: 50px;
        font-size: 1.6em;
    }

    .whatsapp-icon {
        width: 110px;
        height: 110px;
    }

    .whatsapp-icon i {
        font-size: 3.5em;
    }

    .whatsapp-texto {
        font-size: 1.7em;
    }
}

/* Smartphones grandes (768px) */
@media (max-width: 768px) {
    .promocao-banner {
        margin-top: 40px;
        min-height: auto;
    }

    .secao-azul {
        padding: 30px 30px;
    }

    .secao-azul h1 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .secao-azul p {
        font-size: 1em;
        line-height: 1.5;
    }

    .secao-laranja {
        padding: 30px 20px;
        clip-path: polygon(
          0 0, 
          calc(100% - 30px) 0, 
          100% 30px, 
          100% 100%, 
          30px 100%, 
          0 calc(100% - 30px)
        );
        filter: drop-shadow(0 0 0 4px #000);
    }

    .secao-laranja::before,
    .secao-laranja::after {
        height: 50%;
    }

    .secao-laranja-topo {
        font-size: 1em;
        letter-spacing: 0.5px;
    }

    .preco-container {
        margin: -20px 0;
    }

    .preco-grande {
        font-size: 8em;
        letter-spacing: -10px;
        margin-left: 15px;
    }

    .preco-centavos {
        font-size: 3.5em;
        line-height: 1.3;
    }

    .preco-mes {
        font-size: 2em;
    }

    .preco-duracao {
        font-size: 0.8em;
    }

    .cifrao {
        width: 45px;
        height: 45px;
        font-size: 1.4em;
    }

    .secao-laranja-rodape {
        font-size: 1.1em;
        letter-spacing: 1px;
        margin-top: 10px;
    }

    .secao-whatsapp {
        padding: 35px 25px;
    }

    .whatsapp-icon {
        width: 100px;
        height: 100px;
    }

    .whatsapp-icon i {
        font-size: 3em;
    }

    .whatsapp-texto {
        font-size: 1.5em;
    }
}

/* Smartphones médios (600px) */
@media (max-width: 600px) {
    .promocao-banner {
        margin-top: 30px;
    }

    .secao-azul {
        padding: 25px 25px;
    }

    .secao-azul h1 {
        font-size: 1.8em;
    }

    .secao-azul p {
        font-size: 0.95em;
    }

    .secao-laranja {
        padding: 25px 15px;
        clip-path: polygon(
          0 0, 
          calc(100% - 25px) 0, 
          100% 25px, 
          100% 100%, 
          25px 100%, 
          0 calc(100% - 25px)
        );
        filter: drop-shadow(0 0 0 3px #000);
    }

    .secao-laranja-topo {
        font-size: 0.9em;
    }

    .preco-grande {
        font-size: 7em;
        letter-spacing: -8px;
        margin-left: 10px;
    }

    .preco-centavos {
        font-size: 3em;
    }

    .preco-mes {
        font-size: 1.8em;
    }

    .preco-duracao {
        font-size: 0.75em;
    }

    .cifrao {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }

    .secao-laranja-rodape {
        font-size: 1em;
    }

    .whatsapp-icon {
        width: 90px;
        height: 90px;
    }

    .whatsapp-icon i {
        font-size: 2.8em;
    }

    .whatsapp-texto {
        font-size: 1.4em;
    }
}

/* Smartphones pequenos (480px) */
@media (max-width: 480px) {
    .promocao-banner {
        margin-top: 20px;
    }

    .secao-azul {
        padding: 20px 20px;
    }

    .secao-azul h1 {
        font-size: 1.6em;
        margin-bottom: 12px;
    }

    .secao-azul p {
        font-size: 0.9em;
        line-height: 1.4;
    }

    .secao-laranja {
        padding: 20px 12px;
        clip-path: polygon(
          0 0, 
          calc(100% - 20px) 0, 
          100% 20px, 
          100% 100%, 
          20px 100%, 
          0 calc(100% - 20px)
        );
        filter: drop-shadow(0 0 0 3px #000);
    }

    .secao-laranja::before,
    .secao-laranja::after {
        width: 1px;
        height: 40%;
    }

    .secao-laranja-topo {
        font-size: 0.8em;
        letter-spacing: 0;
    }

    .preco-container {
        margin: -15px 0;
    }

    .preco-grande {
        font-size: 6em;
        letter-spacing: -6px;
        margin-left: 8px;
    }

    .preco-centavos {
        font-size: 2.5em;
    }

    .preco-mes {
        font-size: 1.5em;
    }

    .preco-duracao {
        font-size: 0.7em;
        margin-top: 3px;
    }

    .cifrao {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }

    .secao-laranja-rodape {
        font-size: 0.9em;
        letter-spacing: 0.5px;
        margin-top: 8px;
    }

    .secao-whatsapp {
        padding: 30px 20px;
    }

    .whatsapp-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .whatsapp-icon i {
        font-size: 2.5em;
    }

    .whatsapp-texto {
        font-size: 1.3em;
    }
}

/* Smartphones muito pequenos (360px) */
@media (max-width: 360px) {
    .secao-azul h1 {
        font-size: 1.4em;
    }

    .secao-azul p {
        font-size: 0.85em;
    }

    .secao-laranja {
        padding: 18px 10px;
    }

    .secao-laranja-topo {
        font-size: 0.75em;
    }

    .preco-grande {
        font-size: 5em;
        letter-spacing: -5px;
    }

    .preco-centavos {
        font-size: 2.2em;
    }

    .preco-mes {
        font-size: 1.3em;
    }

    .preco-duracao {
        font-size: 0.65em;
    }

    .cifrao {
        width: 32px;
        height: 32px;
        font-size: 1.1em;
    }

    .secao-laranja-rodape {
        font-size: 0.8em;
    }

    .whatsapp-icon {
        width: 70px;
        height: 70px;
    }

    .whatsapp-icon i {
        font-size: 2.2em;
    }

    .whatsapp-texto {
        font-size: 1.2em;
    }
}