.elementor-241 .elementor-element.elementor-element-49b42b5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-241 .elementor-element.elementor-element-9bede58{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-241 .elementor-element.elementor-element-4d4035b{margin:-16px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-241 .elementor-element.elementor-element-49ac007{margin:-21px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-241 .elementor-element.elementor-element-ab054d9{margin:-80px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-241 .elementor-element.elementor-element-5663765{margin:-44px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-241 .elementor-element.elementor-element-98df21f{margin:-52px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-4d4035b *//* ========================================
   ESTILOS GLOBAIS - HEADER, FOOTER E GERAIS
   ======================================== */

/* Importar Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* ========================================
   HEADER
   ======================================== */

header {
    background: #000;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp-nav {
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.btn-whatsapp-nav:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav i {
    font-size: 1.1rem;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

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

footer p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #ffd700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
}

.social-links a:hover {
    background: #ffd700;
    color: #000;
    transform: scale(1.1);
}

/* ========================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ======================================== */

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

/* ========================================
   UTILITÁRIOS
   ======================================== */

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* ========================================
   RESPONSIVIDADE GERAL
   ======================================== */

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .btn-whatsapp-nav {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 30px;
        right: 30px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        font-size: 1rem;
    }

    .btn-whatsapp-nav {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    footer {
        padding: 30px 15px;
    }

    footer p {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-49ac007 *//* ========================================
   SEÇÃO OFERTA - ESTILOS
   ======================================== */

.oferta-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffcc00 100%);
    padding: 100px 20px;
    text-align: center;
}

.oferta-container {
    max-width: 800px;
    margin: 0 auto;
}

.oferta-box {
    background: #000;
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.oferta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.oferta-price {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
}

.price-label {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 10px;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.oferta-includes {
    margin-bottom: 40px;
    text-align: left;
}

.includes-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.includes-list i {
    color: #ffd700;
    margin-right: 15px;
    font-size: 1.3rem;
}

.oferta-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.oferta-advice {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-left: 4px solid #ffd700;
    margin-bottom: 35px;
    font-size: 0.95rem;
    color: #ddd;
    text-align: left;
    border-radius: 5px;
}

.btn-oferta {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.btn-oferta:hover {
    transform: translateY(-3px);
    background: #ffcc00;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-oferta:active {
    transform: translateY(-1px);
}

.oferta-footer {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
    margin-top: 20px;
}

.oferta-footer strong {
    color: #ffd700;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 768px) {
    .oferta-section {
        padding: 60px 15px;
    }

    .oferta-box {
        padding: 40px 25px;
    }

    .oferta-title {
        font-size: 1.8rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .includes-title {
        font-size: 1.1rem;
    }

    .includes-list li {
        font-size: 0.95rem;
    }

    .oferta-description {
        font-size: 1rem;
    }

    .btn-oferta {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .oferta-section {
        padding: 40px 15px;
    }

    .oferta-box {
        padding: 25px 15px;
    }

    .oferta-title {
        font-size: 1.4rem;
    }

    .price-value {
        font-size: 2.2rem;
    }

    .oferta-price {
        padding: 20px;
    }

    .includes-title {
        font-size: 1rem;
    }

    .includes-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .includes-list i {
        margin-right: 10px;
    }

    .oferta-description {
        font-size: 0.95rem;
    }

    .oferta-advice {
        padding: 15px;
        font-size: 0.9rem;
    }

    .btn-oferta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .oferta-footer {
        font-size: 0.9rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ab054d9 *//* ========================================
   SEÇÃO OFERTA - ESTILOS
   ======================================== */

.oferta-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffcc00 100%);
    padding: 100px 20px;
    text-align: center;
}

.oferta-container {
    max-width: 800px;
    margin: 0 auto;
}

.oferta-box {
    background: #000;
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.oferta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.oferta-price {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
}

.price-label {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 10px;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.oferta-includes {
    margin-bottom: 40px;
    text-align: left;
}

.includes-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.includes-list i {
    color: #ffd700;
    margin-right: 15px;
    font-size: 1.3rem;
}

.oferta-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.oferta-advice {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-left: 4px solid #ffd700;
    margin-bottom: 35px;
    font-size: 0.95rem;
    color: #ddd;
    text-align: left;
    border-radius: 5px;
}

.btn-oferta {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.btn-oferta:hover {
    transform: translateY(-3px);
    background: #ffcc00;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-oferta:active {
    transform: translateY(-1px);
}

.oferta-footer {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
    margin-top: 20px;
}

.oferta-footer strong {
    color: #ffd700;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 768px) {
    .oferta-section {
        padding: 60px 15px;
    }

    .oferta-box {
        padding: 40px 25px;
    }

    .oferta-title {
        font-size: 1.8rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .includes-title {
        font-size: 1.1rem;
    }

    .includes-list li {
        font-size: 0.95rem;
    }

    .oferta-description {
        font-size: 1rem;
    }

    .btn-oferta {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .oferta-section {
        padding: 40px 15px;
    }

    .oferta-box {
        padding: 25px 15px;
    }

    .oferta-title {
        font-size: 1.4rem;
    }

    .price-value {
        font-size: 2.2rem;
    }

    .oferta-price {
        padding: 20px;
    }

    .includes-title {
        font-size: 1rem;
    }

    .includes-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .includes-list i {
        margin-right: 10px;
    }

    .oferta-description {
        font-size: 0.95rem;
    }

    .oferta-advice {
        padding: 15px;
        font-size: 0.9rem;
    }

    .btn-oferta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .oferta-footer {
        font-size: 0.9rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5663765 *//* ========================================
   SEÇÃO OFERTA - ESTILOS
   ======================================== */

.oferta-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffcc00 100%);
    padding: 100px 20px;
    text-align: center;
}

.oferta-container {
    max-width: 800px;
    margin: 0 auto;
}

.oferta-box {
    background: #000;
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.oferta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.oferta-price {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
}

.price-label {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 10px;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.oferta-includes {
    margin-bottom: 40px;
    text-align: left;
}

.includes-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.includes-list i {
    color: #ffd700;
    margin-right: 15px;
    font-size: 1.3rem;
}

.oferta-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.oferta-advice {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-left: 4px solid #ffd700;
    margin-bottom: 35px;
    font-size: 0.95rem;
    color: #ddd;
    text-align: left;
    border-radius: 5px;
}

.btn-oferta {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.btn-oferta:hover {
    transform: translateY(-3px);
    background: #ffcc00;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-oferta:active {
    transform: translateY(-1px);
}

.oferta-footer {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
    margin-top: 20px;
}

.oferta-footer strong {
    color: #ffd700;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 768px) {
    .oferta-section {
        padding: 60px 15px;
    }

    .oferta-box {
        padding: 40px 25px;
    }

    .oferta-title {
        font-size: 1.8rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .includes-title {
        font-size: 1.1rem;
    }

    .includes-list li {
        font-size: 0.95rem;
    }

    .oferta-description {
        font-size: 1rem;
    }

    .btn-oferta {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .oferta-section {
        padding: 40px 15px;
    }

    .oferta-box {
        padding: 25px 15px;
    }

    .oferta-title {
        font-size: 1.4rem;
    }

    .price-value {
        font-size: 2.2rem;
    }

    .oferta-price {
        padding: 20px;
    }

    .includes-title {
        font-size: 1rem;
    }

    .includes-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .includes-list i {
        margin-right: 10px;
    }

    .oferta-description {
        font-size: 0.95rem;
    }

    .oferta-advice {
        padding: 15px;
        font-size: 0.9rem;
    }

    .btn-oferta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .oferta-footer {
        font-size: 0.9rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-98df21f *//* ========================================
   SEÇÃO OFERTA - ESTILOS
   ======================================== */

.oferta-section {
    background: linear-gradient(135deg, #ffd700 0%, #ffcc00 100%);
    padding: 100px 20px;
    text-align: center;
}

.oferta-container {
    max-width: 800px;
    margin: 0 auto;
}

.oferta-box {
    background: #000;
    color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.oferta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.oferta-price {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
}

.price-label {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 10px;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.oferta-includes {
    margin-bottom: 40px;
    text-align: left;
}

.includes-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.includes-list i {
    color: #ffd700;
    margin-right: 15px;
    font-size: 1.3rem;
}

.oferta-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.oferta-advice {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-left: 4px solid #ffd700;
    margin-bottom: 35px;
    font-size: 0.95rem;
    color: #ddd;
    text-align: left;
    border-radius: 5px;
}

.btn-oferta {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.btn-oferta:hover {
    transform: translateY(-3px);
    background: #ffcc00;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-oferta:active {
    transform: translateY(-1px);
}

.oferta-footer {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
    margin-top: 20px;
}

.oferta-footer strong {
    color: #ffd700;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 768px) {
    .oferta-section {
        padding: 60px 15px;
    }

    .oferta-box {
        padding: 40px 25px;
    }

    .oferta-title {
        font-size: 1.8rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .includes-title {
        font-size: 1.1rem;
    }

    .includes-list li {
        font-size: 0.95rem;
    }

    .oferta-description {
        font-size: 1rem;
    }

    .btn-oferta {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .oferta-section {
        padding: 40px 15px;
    }

    .oferta-box {
        padding: 25px 15px;
    }

    .oferta-title {
        font-size: 1.4rem;
    }

    .price-value {
        font-size: 2.2rem;
    }

    .oferta-price {
        padding: 20px;
    }

    .includes-title {
        font-size: 1rem;
    }

    .includes-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .includes-list i {
        margin-right: 10px;
    }

    .oferta-description {
        font-size: 0.95rem;
    }

    .oferta-advice {
        padding: 15px;
        font-size: 0.9rem;
    }

    .btn-oferta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .oferta-footer {
        font-size: 0.9rem;
    }
}/* End custom CSS */