@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Thin.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}



body {
    margin: 0;
    padding: 0;

}

.custom-container {
    width: 55%;
    max-width: 800px;
}


@media (max-width: 480px) {
    .custom-container {
        width: 95%;
        max-width: 100%;
    }
}



/*Titulos*/

.titulos {
    margin-bottom: 30px;


}

.titulo {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0px;
    font-size: 25px;
}

.subtitulo {
    font-weight: lighter;
    color: #4d4d4d;
    font-size: 25px;
}

.titulovermelho {
    color: #d50000;
}

.titulopreto {
    color: #000000;
}


.titulocinza {
    color: #4d4d4d;
}

@media (max-width: 768px) {
    .subtitulo {
        font-size: 22px;
    }

    .titulo {
        font-size: 20px;
        margin-top: -10px;
    }

}


/*CTA*/


.cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;

}

.btn-comprar {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    border-radius: 21px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    width: 80%;
    max-width: 100%;
    transition: background-color 0.3s ease;
    font-weight: 500;

}

.btn-comprar:hover {
    background-color: #ffffff;
    color: #4CAF50;
    border: solid 1px #4CAF50;
}

@media (max-width: 768px) {
    .btn-comprar {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .btn-comprar {
        font-size: 14px;
        padding: 10px;
    }
}


/*header*/

.header {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.header picture {
    display: block;
    margin: 0 auto;
}


/* hero  */
.hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    max-height: 960px;
    overflow: hidden;
}

.hero-banner-image,
.hero-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay-bg {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    text-align: left;
    max-width: 55%;
}

.banner-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-section .btn-comprar {
    font-size: 18px;
    padding: 12px 24px;
    width: auto;
    max-width: 100%;
    margin-top: 10px;
}

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

    .hero-overlay-content {
        align-items: center;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        max-width: 90%;
        margin: 0 auto;
        justify-content: end;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .hero-section .btn-comprar {
        font-size: 16px;
        padding: 10px 20px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1920px) {
    .banner-title {
        font-size: 48px;
    }

    .banner-subtitle {
        font-size: 24px;
    }

    .hero-section .btn-comprar {
        font-size: 20px;
    }
}


/* Mídias */

.midias-section {
    background-color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.img-midias {
    max-width: 100%;
    height: auto;
}



/*chef*/

.chef-section {
    background-color: #F6F6F6;

}

.name-title {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 0.5rem;
    color: #515151;

}

.role-title {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 1rem;
    color: #6B7072;
}

.description {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.img-chefe {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .img-chefe {
        margin-bottom: 20px;
    }

    .name-title {
        font-size: 20px;
    }
}



/*Modulos*/

.modules-section {
    background: #ffffff;
    text-align: center;
}

.module-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 20px;
}

.modules-description-home,
.modules-description-end {
    text-align: start;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #000000;

}

.module-item .col-lg-6 {
    flex: 1 1 45%;
    max-width: 46%;
    margin: 5px 0;
    text-align: left;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Roboto';
}

.module-list li {

    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #666;
}

.module-list i {
    margin-right: 10px;
    font-size: 15px;
    color: #28a745;


}

.module-item .img-fluid {
    width: auto;
    object-fit: cover;
    height: 495px;
    border: 1px solid;
}




@media (max-width: 768px) {
    .module-item {
        flex-direction: column;
        gap: 0;
    }

    .module-item .col-lg-6 {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .module-item .img-fluid {
        height: 260px;
        width: 100%;
    }
}


/*CERTIFICADO*/


.certificado-section {
    text-align: center;
}

.certificado-title {
    font-weight: bold;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 10px;
}

.certificado-subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    color: #757575;
    margin-bottom: 20px;
}

.certificado-description {
    text-align: start;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
}

.certificado-image {
    max-width: 100%;
    margin: 0 auto;
}

.certificado-image img {
    border-radius: 5px;
    width: auto;
    max-width: 100%;
    height: 300px;
}

@media (max-width: 768px) {
    .certificado-image img {
        height: auto;
    }
}

/*CTA MEIO*/

.cta-meio {
    background-color: #feca32;
}


/*ACESSO AO CURSO*/

.acesso-section {
    background-color: #F6F6F6;

}

.acesso-header {
    margin-bottom: 20px;
}

.acesso-title {
    font-weight: bold;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 10px;
}

.acesso-subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    color: #757575;
}

.acesso-description {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.acesso-image {
    max-width: 100%;
    margin: 0 auto;
}

.acesso-image img {
    border-radius: 5px;
    width: auto;
    max-width: 100%;
    height: auto;
}

.acesso-description {
    text-align: start;
}

@media (max-width: 768px) {

    .acesso-description {
        margin-top: 20px;
    }

}



/*DEPOIMENTO*/

.depoimentos-section {
    text-align: center;
}

.depoimentos-title {
    font-weight: bold;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 10px;
}

.depoimentos-subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    color: #757575;
    margin-bottom: 30px;
}

.depoimentos-card {
    background-color: #F6F6F6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.depoimentos-card .img-fluid {
    max-width: 100%;
    height: 210px;
}

.depoimentos-body {
    padding: 15px;
    flex-grow: 1;
    max-height: 340px;
    overflow-y: auto;
}

.depoimentos-description {
    text-align: start;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
}

.depoimentos-curso {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 1rem;
    color: #6B7072;
}


.depoimentos-linha {
    display: flex;
    flex-wrap: wrap;
}

.depoimentos-colunas {
    display: flex;
}

.depoimentos-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media (max-width: 768px) {
    .depoimentos-card {
        margin-bottom: 20px;
    }

    .depoimentos-linha {
        justify-content: center;

    }

    .depoimentos-card .img-fluid {
        height: 253px;
    }

    .depoimentos-colunas {

        justify-content: center;
    }
}


/*MATERIAL*/

.material-section {
    text-align: center;
}

.material-title {
    font-weight: bold;
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 10px;
}

.material-subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    color: #757575;
    margin-bottom: 30px;
}

.material-card {
    background-color: #F6F6F6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;

}

.material-linha {
    justify-content: space-between;

}

.material-body {
    padding: 20px;
    flex-grow: 1;
}

.material-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.material-text {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    text-align: center;
}

.material-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 8px;
}

.material-img {
    padding: 5px;
}

.material-description {
    text-align: start;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
}

@media (max-width: 768px) {
    .material-card {
        margin-bottom: 20px;
    }
}

/*BONUS*/

.bonus-section {
    text-align: center;
}

.bonus-titles {
    margin-bottom: 20px;
}

.bonus-title {
    font-weight: bold;
    font-size: 1.75rem;
    color: #dc3545;
}

.bonus-subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    color: #757575;
}

.bonus-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
}

.bonus-body {
    padding: 15px;
}

.bonus-name {

    font-size: 22px;

}

.bonus-text {
    font-size: 22px;

}

.bonus-linha {
    display: flex;
    justify-content: center;
}

.bonus-linha-um {
    background-color: #F6F6F6;
}

@media (max-width: 768px) {
    .bonus-card {
        margin-bottom: 20px;
    }
}


/*CTA*/.cta-section {
    background-color: #F6F6F6;
    padding: 60px 0;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-card-header h4 {
    font-size: 16px;
    font-weight: 700;
    background: #dee2e6;
    color: #000000;
    border-radius: 10px 10px 0 0;
    padding: 10px;
    margin: -20px -20px 20px -20px;
}

.desconto {
    background-color: #f44336;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    padding: 6px 15px;
    font-size: 14px;
    margin-bottom: 10px;
}

.original-price {
    font-size: 21px;
    color: #555;
    margin: 0;


}

.text-danger {
    font-weight: 700;
}

.text-parcela {
    font-size: 21px;
    margin-bottom: 0px;
    color: #2e7d32;

}

.final-price {
    font-size: 21px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.final-price-valor {
    font-size: 28px;
   
}

.price {
    font-size: 45px;
    color: #2e7d32;
    font-weight: bold;
    margin: 0px 0 20px 0;
}


.beneficios {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 14px;
    color: #2e7d32;
}

.beneficios li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.beneficios li strong {
    margin: 0 4px;
    display: inline-block;
}

.beneficios li i {
    color: #2e7d32;
    margin-right: 8px;
    font-size: 14px;
}

.pricing-card hr {
    border: 0;
    border-top: 2px solid #ef9a9a;
    margin: 20px 0;
}


.mais-comprado {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #feca32;
    color: #000;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 30px;
    }

    .cta-section {
        padding-bottom: 0px;
    }
}


/*GARANTIA*/

.garantia-section {
    background-color: #F6F6F6;
    padding: 40px 0;
}

.garantia-img {
    max-width: 100%;
    height: auto;
}

.garantia-titles {
    margin-bottom: 10px;
}

.garantia-title {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 1rem;
    color: #6B7072;
}

.garantia-subtitle {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 1rem;
    color: #6B7072;
}

.garantia-text {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #666;
}

@media (max-width: 768px) {
    .garantia-section .row {
        text-align: center;
    }

    .garantia-titles {
        text-align: center;
    }

    .garantia-text {
        text-align: center;
    }
}


/*PERGUNTAS E RESPOSTAS*/

.perguntas-section {
    background-color: #fff;
}

.perguntas-title {
    font-weight: bold;
    font-size: 2rem;
    color: #333;
}

.accordion-button {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 1rem;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background-color: #e0e0e0;
}


.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 1rem;
    color: #555;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

@media (max-width: 768px) {
    .perguntas-title {
        font-size: 1.5rem;
    }

    .accordion-button {
        font-size: 0.875rem;
    }
}


@keyframes shake {
    0% { transform: translateX(0); }
    10% { transform: translateX(-2px) rotate(0.5deg); }
    20% { transform: translateX(2px) rotate(-0.5deg); }
    30% { transform: translateX(-2px) rotate(0.5deg); }
    40% { transform: translateX(2px) rotate(-0.5deg); }
    50% { transform: translateX(-2px) rotate(0.5deg); }
    60% { transform: translateX(2px) rotate(-0.5deg); }
    70% { transform: translateX(-2px) rotate(0.5deg); }
    80% { transform: translateX(2px) rotate(-0.5deg); }
    90% { transform: translateX(-2px) rotate(0.5deg); }
    100% { transform: translateX(0) rotate(0); }
  }
  
  .btn-comprar {
    animation: shake 2s  1s infinite;
   
  }

