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

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
}

body {
    width: 100%;
    height: 100%;
}

/*NAV BAR*/
.logo img {
    width: 120px;
    height: 60px;
}

.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #0B0E56;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    height: 70px;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: #0B0E56;
}

.menu>li {
    margin: 0 1rem;
    overflow: hidden;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #ffffff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

.menu li {
    background-color: #0B0E56;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out, color 0.3s ease-in-out;
    color: #fff;
}

.menu li:hover {
    background-color: #1273eb;
    color: #F5F5F5;
}

.atendimento {
    background-color: #1273eb;
    color: #F5F5F5;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.atendimentoPlano {
    background-color: #25D366;
    color: #F5F5F5;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.atendimentoPlano a {
    font-size: 15px;
}

.atendimento a {
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

/*CORPO DA PÁGINA*/
main {
    width: 100%;
    height: 100%;
    padding-top: 100px;
    background-color: #fff;
    position: relative;
    z-index: 900;
}

#myCarousel {
    margin-top: 70px;
}

.carousel img {
    width: 100%;
    height: 80%;
    height: auto;
}


/*cards de produtos*/
.card {
    font-size: 1.2rem;
    height: 100%;
}

.custom-card {
    width: 270px;
}

.p-titulo {
    font-size: 15px;
    font-weight: bold;
}

.cpf {
    margin-left: 2px;
}

.p-valores {
    font-size: 15px;
    font-weight: bolder;
}

.beneficios li {
    list-style: none;
    font-size: 12px;
    font-weight: 500;
    text-align: start;
}

.beneficios i {
    color: #25D366;
}

.accordion-body p {
    font-size: 12px;
    font-weight: bold;
}

.ligue-agora{
    
}

.carencia li {
    list-style: none;
    font-size: 11px;
    font-weight: bold;
}

h1 {
    font-weight: bold;
}

.textoCard {
    font-weight: bolder;
    font-size: 20px;
}

.btn-card {
    width: 150px;
    height: 35px;
    border-radius: 3px;
    background-color: #47C7DE;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: bolder;
}

.btn-card:hover {
    color: #fff;
    background-color: #0B0E56;
}

.btn-planos {
    width: 250px;
    height: 50px;
    border-radius: 8px;
    background-color: #47C7DE;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: bolder;
}

.btn-planos:hover {
    color: #fff;
    background-color: #0B0E56;
    transform: scale(1.2);
}

.btn-planos2 {
    width: 350px;
    height: 100px;
    border-radius: 8px;
    background-color: #47C7DE;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: bolder;
    animation: pulse 2s infinite;
}

.btn-planos:hover {
    color: #fff;
    background-color: #0B0E56;
    transform: scale(1.2);
}

.planos {
    font-size: 13px;
    font-weight: 500;
}

/* ícone do WhatsApp flutuante */
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* ícone do telefone flutuante */
.float-telefone {
    position: fixed;
    bottom: 20px;
    right: 100px;
    z-index: 999;
    background-color: #1273eb;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

.float-telefone:hover {
    background-color: #0B0E56;
    color: #fff;
    transform: scale(1.1);
}

.form {
    box-shadow: 0px 4px 10px #47C7DE;
    border-radius: 15px;
}

.faleconosco {
    padding: 1rem;
}

.faleconosco p {
    font-size: 25px;
    font-weight: bold;
}

.faleconosco:hover p {
    animation: subirDescer 0.8s ease-in-out forwards;
}

.faleconosco p {
    color: #0B0E56;
}

.valores-planos {
    border: 1px solid #333;
}

.p-condicoes {
    font-size: 12px;
}

#dependentesPlano {
    display: none;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.container-table {
    width: 600px;
}

.quemsomos-p {
    font-size: 20px;
    font-weight: 300;
}

.my-table {
    max-width: 400px;
}

.texto {
    margin-left: 13%;
}

.tels {
    color: #0B0E56;
}

.tels:hover {
    color: #1273eb;
}

.cemiterio-icon {
    font-size: 15px;
}



.button-35 {
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: transparent 0 0 0 3px, rgba(18, 18, 18, .1) 0 6px 20px;
    box-sizing: border-box;
    color: #121212;
    cursor: pointer;
    display: inline-flex;
    flex: 1 1 auto;
    font-size: 1.2rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    margin: 0;
    outline: none;
    padding: 1rem 1.2rem;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .2s, -webkit-box-shadow .2s;
    white-space: nowrap;
    border: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-35:hover {
    box-shadow: #121212 0 0 0 3px, transparent 0 0 0 0;
}

@keyframes subirDescer {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

textarea {
    resize: none;
}

/*FOOTER*/
footer {
    background-color: #0B0E56;
    color: #fff;
}

.maps {
    width: 655px;
    height: 300px;
}

.btn-maps {
    background-color: #F5F5F5;
    color: #0B0E56;
    border: none;
}

.btn-maps:hover {
    background-color: #0B0E56;
    color: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-atd {
    width: 340px;
    height: 80px;
    border-radius: 20px;
    background-color: #1273eb;
    position: absolute;
    bottom: 280px;
    right: 200px;
    z-index: 1;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(52, 152, 219, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

@media (max-width: 992px) {
    header {
        width: 100%;
    }

    .menu-button-container {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 0;
        margin-top: 70px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    #menu-toggle~.menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.menu li {
        height: 3.5em;
        padding: 1.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #fff;
        background-color: #0B0E56;
    }

    .menu>li:not(:last-child) {
        border-bottom: 1px solid #444;
    }

    .menu li:hover {
        background-color: #0B0E56;
        color: #f3f4e5;
    }

    #myCarousel {
        margin-top: 70px;
        position: relative;
    }

    .carousel-item img {
        height: 257px;
    }

    /* Aumenta o tamanho dos cards */
    .card {
        height: 725px;
    }

    /* Aumenta o tamanho das imagens dos cards */
    .card-img-top {
        height: 100px;
    }

    /* Aumenta o tamanho dos títulos e textos dos cards */
    .card-title,
    .card-text {
        font-size: 1.2rem;
    }

    .card img {
        height: 300px;
    }

    .card-cremacao {
        height: 673px;
    }

    .faleconosco p {
        display: none;
    }

    .mapa {
        display: none;
    }

    .accordion {
        display: none;
    }

    .valores-planos {
        font-size: 11px;
    }

    .atendimento {
        display: none;
    }

    label {
        font-size: 12px;
    }

    .cemiterioP {
        font-size: 15px;
    }

    .btn-atd {
        display: none;
    }

    .btn-planos2 {
        width: 250px;
        height: 70px;
        border-radius: 8px;
        background-color: #47C7DE;
        border: none;
        color: #fff;
        font-size: 20px;
        font-weight: bolder;
        animation: pulse 2s infinite;
    }


}

@media screen and (min-width: 320px) and (max-width: 653px) {
    .logo img {
        width: 75px;
        height: 42px;
    }

    .card img {
        height: 270px;
    }

    .mapa {
        display: none;
    }

    .carousel-item img {
        height: 257px;
    }

    .atendimento {
        display: none;
    }

    .cemiterioP {
        font-size: 15px;
    }

    .btn-atd {
        display: none;
    }

}

@media screen and (max-width: 1024px) {
    .mapa {
        display: none;
    }
}