@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

body {
    line-height: 1;
    font-family: Poppins;
}

input, button, textarea, select {
    font-family: Poppins;
    font-size: 100%;
    outline: none;
    border: none;
}

html {
    scroll-behavior: smooth;
}

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

/* Header & Navigation - Mobile First */
.header {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.10), rgba(64, 64, 64, 0.6), rgba(0, 0, 0, 1));
    color: white;
    align-items: center;
    padding: 1rem 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    gap: 5px;
}

.logo {
    width: 300px;
}

.logo_img {
    width: 300px;
    height: auto;
}

.menu-toggle {
    justify-content: center;
    align-items: center;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: transparent;
}

.navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #9F0A0D;
    flex-direction: column;
    padding: 20px 0;
    max-height: 80vh;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    display: flex;
    align-items: center;
    visibility: hidden;
    gap: 20px;
}

.navbar.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    visibility: visible;
}

.nav-text {
    font-size: 22px;
    font-weight: 800;
    transition: all 0.5s ease;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    transition-delay: calc(0.1s * var(--item-number));
}

.navbar.active .nav-text {
    opacity: 1;
    transform: translateY(0);
}

.nav-text:hover {
    color: #ff0004;
}

.nav-button {
    gap: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    background-color: #9F0A0D;
    padding: 14px 16px;
    border: 2px solid white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-button img{
    width: 34px;
}

.nav-button:hover {
    background-color: red;
    transform: scale(1.1);
}

/* Hero Section - Mobile First */
.hero {
    background-image: url('assets/mobile/mobile-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 100px 20px 30px;
    min-height: 80vh;
    height: auto;
    border-bottom: 3px solid #9F0A0D; /* ou #ccc, ou a cor que quiser */
    position: relative; /* necessário pra posicionar a seta depois */
}

.hero-content {
    align-items: center;
    justify-content: start;
    display: flex;
    flex-direction: column;
    color: white;
    width: 100%;
    gap: 12px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 600;
    text-align: center;
}

.heart_line1 {
    width: 300px;
}

.subtitle {
    display: block;
    font-size: 24px;
    text-align: center;
    line-height: 36px;
    font-weight: 300;
}

.subtitle strong {
    display: inline;
    font-weight: 500;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    margin-top: 15px;
    align-items: center;
}

.btn {
    width: 330px;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    border: white;
    padding: 14px 16px;
    border: 2px solid white;
    border-radius: 10px;
    background-color: #9F0A0D;
    transition: all 0.3s ease;
}

.btn img{
    width: 34px;
}

.btn:hover {
    background-color: red;
    transform: scale(1.1);
}

.btn-red {
    background-color: rgba(0, 0, 0, 0);
}

.btn-red:hover {
    background-color: black;
}

.scroll-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
}



/* Profile Section */
.profile {
    padding: 40px 20px;
    background-color: white;
    min-height: 100vh;
    height: auto;
}

.profile-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
    color: #722F37;
}

.profile-photo img{
    width: clamp(150px, 100%, 400px);
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.profile-info h4 {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 15%;
}

.profile-info h1 {
    font-size: 55px;
    font-weight: 600;

}

.academic-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.academic-info ul {
    list-style: none;
}

.academic-info ul li {
    line-height: 26px;
}

.formacao_icon {
    display: block;
}

.formacao_text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 25px;
    margin-top: 6px;
}

.current-activities-desktop{
    display: none;
}

.social-icons-desktop{

    display: none;
}

.social-icons a{
    width: 44px;
}

.social-icons img{
    width: 44px;
}

.social-icons-desktop a{
    width: 44px;
}

.formacao_text ul,
.formacao_text p {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 20px;
    text-align: start;
}

.current-activities {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.livros {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.livro {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.livro img {
    width: clamp(150px, 100%, 300px);
    height: auto;
}

.livro h3 {
    font-size: 25px;
    color: #9F0A0D;
}

.livro p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.livro a {
    color: white;
    background-color: #722F37;
}

.divider {
    display: block;
    border: none;
    border-top: 1px solid #722F37;
    margin: 10px 0;
    width: 100%;
}

.social-icons{
    display: flex;
    margin-top: 40px;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

/* Especialidades Section */
.especialidade {
    background-image: url(assets/especialidade/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 20px;
    min-height: 100vh;
    height: auto;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.especialidade h1 {
    font-size: 35px;
    font-weight: 600;
}

.especialidades-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.especialidades-card {
    width: clamp(150px, 100%, 400px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 60px 22px 30px 22px;
    border: 2px solid white;
    border-radius: 10px;
    gap: 40px;
    align-items: center;
    background-color: rgba(159, 10, 13, 0.5);
}

.card-img {
    width: 50%;
}

.especialidades-card h1 {
    font-size: 30px;
}

.especialidades-card-p {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    font-size: 20px;
    font-weight: 300;
}

.btn-real-red {
    background-color: #9F0A0D;
}

/* Exames Section */

.exames {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #722F37;
    gap: 40px;
}

.exames_titulo{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exames::after {
    content: "Deslize para ver mais ➜";
    display: block;
    text-align: center;
    color: #722F37;
    font-size: 22px;
    font-weight: 200;
    text-transform: uppercase;
}

.exames_after{
    display: none;
}

.exames h1 {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}

.grid {
    display: flex;
    width: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    background-color: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.grid::-webkit-scrollbar {
    display: none;
}

.card {
    display: flex;
    flex-direction: column;
    min-width: calc((100% - 40px) / 2);
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: white;
    border: 1px solid #722F37;
    border-radius: 8px;
    padding: 20px;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 370px;
    gap: 20px;

}


.icon {
    text-align: center;
}

.card p {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #9F0A0D;
    text-align: center;
}

/* Quando Section */
.quando {
    padding: 40px 20px 80px;
    display: flex;
    flex-direction: column-reverse;
    min-height: 100vh;
    height: auto;
    background-color: #9F0A0D;
}

.quando_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 36px;
}

.quando_content h1 {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}

.quando_heart_line {
    width: 600px;
}

.reasons {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 40px;
}

.quando li {
    font-size: 20px;
}

.reason-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #722F37;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reason-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    padding: 12px;
    line-height: 36px;
}


.reason-header .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    text-align: end;
}

.reason-detail {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    font-size: 18px;
    font-weight: 300;
    color: white;
}

.reason-detail.open {
    max-height: 200px;
    opacity: 1;
    padding: 0 12px 12px;
}

.reason-header.open .arrow {
    transform: rotate(180deg);
}

.quando_images{
    display: flex;
    flex-direction: column;
    align-items: center;

}

.quando_images img {
    width: 100%;
    max-width: 500px;
    padding: 0;
    margin-bottom: 25px;
}

.quando_zap {
    color: white;
}

.quando_local {
    background-color: white;
    color: #722F37;
}

.quando_local:hover {
    background-color: #ffc6c7;
}

/* Clínica Section */
.clinica {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px 20px 0;
    background-color: white;
    color: #722F37;
    gap: 30px;
}

.clinica::after {
    content: "Deslize para ver mais ➜";
    display: block;
    text-align: center;
    color: #722F37;
    font-size: 22px;
    font-weight: 200;
    text-transform: uppercase;
}

.clinica_after{
    display: none;
}

.titulo_clinica {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.clinica h1 {
    font-size: 35px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0 0;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    text-align: center;
    color: #722F;
    flex: 0 0 auto;
    text-align: center;
    color: #722F37;
    width: 200px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #722F37;
}

.carousel-item p {
    font-size: 20px;
}

/* Localização Section */
.localizacao {
    padding: 40px 20px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #722F37;
    gap: 34px;
    text-align: center;
}

.localizacao h1 {
    font-size: 30px;
    font-weight: 600;
}

.localizacao h2 {
    font-size: 16px;
}

.localizacao iframe {
    height: 400px;
}

.btn-mapa {
    color: white;
    background-color: #722F37;
}

/* Footer Section */
.footer {
    background-image: url(assets/mobile/mobile-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
}

.footer_container {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-bottom: 50px;
    gap: 40px;
    padding: 75px 40px 50px;
}

.footer_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer_logo img {
    width: 100%;
    object-fit: contain;
}

.footer_logo p {
    font-size: 18px;
    text-align: center;
}

.footer_contact,
.footer_hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer_contact h3,
.footer_hours h3 {
    font-size: 23px;
}

.footer_contact p,
.footer_hours p {
    font-size: 18px;
    text-align: start;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}

.footer_contact p img,
.footer_hours p img {
    width: 32px;
}

.social{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer_social {
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
}

.footer_social a img {
    width: 44px;
}

.footer_bottom {
    margin: 0;
    color: #722F37;
    background-color: white;
    text-align: center;
    padding: 10px;
}

.footer_bottom p {
    font-size: 12px;
    text-align: center;
}

/* Estilo para tablets */
@media (min-width: 481px) and (max-width: 1023px) {
    .header {
        padding: 1rem 20px;

        gap: 50px;
    }

    .logo {
        width: 400px;
    }

    .logo a{
        width: 100%;
    }

    .logo_img {
        max-width: 100%;
        object-fit: contain;
    }
   
    .hero {
        background-image: url(assets/main/bg.png);
        align-items: center;
        justify-content: start;
        padding: 86px 40px 40px;
    }

    .hero-content {
        justify-content: start;
        width: 100%;
        align-items: center;
        
    }

    .hero-content h1 {
        font-size: 64px;
        text-align: center;
    }

    .heart_line1 {
        width: 780px;
    }

    .subtitle {
        font-size: 22px;
        text-align: center;
    }

    .buttons {
        margin-top: 30px;
        flex-direction: row;
        gap: 30px;
    }

    .btn {
        width: auto;
    }

    /* Profile Section */
    .profile {
        padding:  80px 40px;
    }

    .profile-container {
        flex-direction: column;
    }

    .profile-info h1 {
        font-size: 75px;
    }

    .profile-info h4 {
        font-size: 25px;
    }

    .formacao_icon {
        display: none;
    }

    .livros {
        flex-direction: row;
    }

    .livro{
        width: 210px;
    }

    .divider {
        display: none;
    }

    /* Especialidades Section */
    .especialidade {
        padding: 80px 40px;
    }

    /* Quando */
    .quando{
        padding: 40px 80px 80px;
    }

    /* Exames Section */
    .exames{
        padding: 80px 40px;
    }

    .grid {
        overflow-x: auto;
        scrollbar-width: auto;
        scrollbar-color: #722F37 transparent;
    }

    /* Quando Section */
    .quando {
        padding: 40px 80px 80px;
    }

    .quando_content h1 {
        font-size: 60px;
    }

    .quando_images img {
        width: 700px;
        padding: 30px;
        margin-bottom: 0;
    }

    /* Clínica Section */
    .clinica {
        padding: 80px 40px 40px;
        gap: 40px;
    }

    .clinica h1 {
        font-size: 60px;
    }

    .carousel {
        overflow-x: auto;
        scrollbar-width: auto;
        scrollbar-color: #722F37 transparent;
    }

    .carousel-button{display: none;}

    .carousel::-webkit-scrollbar {
        height: 8px;
        display: block;
    }

    .carousel::-webkit-scrollbar-thumb {
        background-color: #722F37;
        border-radius: 4px;
    }

    .carousel::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Localização Section */
    .localizacao {
        padding: 40px 40px 80px;
    }

    .localizacao h1 {
        font-size: 48px;
    }

    .localizacao h2 {
        font-size: 25px;
    }

    /* Footer Section */
    .footer_container {
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        padding: 40px 40px;
    }

    .footer_logo {
        align-items: flex-start;
        width: 70%;
    }

    .footer_logo p {
        font-size: 24px;
    }

    .footer_contact h3,
    .footer_hours h3 {
        font-size: 30px;
    }

    .footer_contact p,
    .footer_hours p {
        font-size: 20px;
    }

    .footer_bottom p {
        font-size: 16px;
    }
}

.footer_social {
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
}

.footer_social a img {
    width: 44px;
}

  /* Estilo para notebooks */
  @media (min-width: 1024px){
    .menu-toggle {
        display: none;
    }

    .navbar {
        display: flex;
        position: static;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        background-color: transparent;
        padding: 0;
        opacity: 1;
        transform: none;
        visibility: visible;
        pointer-events: all;
        gap: 30px;
    }

    .nav-text {
        display: block;
        font-size: 24px;
        color: white;
        opacity: 100%;
        transform: none;
    }

    .nav-button {
        gap: 17px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        background-color: #9F0A0D;
        padding: 14px 16px;
        border: 2px solid white;
        border-radius: 10px;
        transition: all 0.3s ease;
        width: 285px;
    }

    .hero{
        justify-content: start;
        align-items: center;
        background-image: url(assets/main/bg.png);
        padding-top: 110px;
        border-bottom: none;
        height: 100vh;
    }

    .hero-content{
        align-items: start;
        margin-left: 20px;
        width: 60%;
    }
    
    .heart_line1{
        width:clamp(150px, 100%, 600px);
    }

    .subtitle{
        text-align: start;
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .buttons{
        flex-direction: row;
        width:clamp(150px, 100%, 700px);
    }

    .buttons a{
        font-size: 18px;
    }

    .scroll-icon {
        display: none;

    }

    .profile{
        padding: 80px 40px;
    }

    .profile-container{
        gap: 36px;
    }

    .profile-info{
        gap: 16px;
    }

    .profile-info h4{
        font-size: 18px;
    }

    .profile-info h3{
        font-size: 26px;
    }

    .current-activities{
        display: none;
    }

    .social-icons{
        display: none;
    }

    .current-activities-desktop{
        display: block;
    }

    .divider{
        display: none;
    }

    .social-icons-desktop{
        display: flex;
        gap: 36px;
        align-items: center;
        justify-content: center;
        align-items: center;
        justify-content: center;
    }

    .formacao_text ul, .formacao_text p{
        gap: 12px;
        font-size: 18px;
    }

    .livros{
        gap: 16px;
        flex-direction: row;
        justify-content: center;

    }

    .livro{
        width: 280px;
    }

    .livro h3{
        font-size: 22px;
    }

    .livro a {
        width: 250px;
    }
    
    .especialidade{
        padding: 80px 40px;
        justify-content: center;
    }

    .especialidades-group {
        flex-direction: row;
        gap: 40px;
    }
    
    .especialidades-card{
        width: 300px;
    }

    .especialidades-card h1 {
        font-size: 22px;
    }

    .especialidades-card-p {
        font-size: 18px;
    }

    .especialidades-card a{
        width: 100%;
        font-size: 15px;
    }

    .exames {
        padding: 80px 40px;
    }

    .grid {
        display: flex;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        background-color: transparent;
        padding-bottom: 10px;
    }
    
    .grid::-webkit-scrollbar {
        height: 12px;
        display: none;
    }

    .grid::-webkit-scrollbar-thumb {
        background-color: #722F37;
        border-radius: 4px;
    }

    .grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .exames_after {
        display: block;
        text-align: center;
        color: #722F37;
        font-size: 22px;
        font-weight: 200;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
        align-items: center;
        gap:12px;
    }
    
    .exames::after{
        display: none;
    }

    .quando{
        padding: 80px 40px;
    }

    .quando_images {
        justify-content: center;
    }

    .quando_images img{
        width: 300px;
    }

    .footer_logo{
        width: 30%;
    }
    .social{
        align-items: start;
    }

    .hero-content h1 {
        font-size: 55px;
    }

    .container {
        max-width: 1320px;
    }

    .clinica {
        padding: 80px 40px 0;
    }

    .clinica_after {
        display: block;
        text-align: center;
        color: #722F37;
        font-size: 22px;
        font-weight: 200;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
        align-items: center;
        gap:12px;
    }

    .clinica::after{
        display: none;
    }

    .carousel-button, .scroll-button {
        height: 50px;
        width: 50px;
        position: block;
        background-color: rgba(114, 47, 55);
        color: white;
        border: none;
        border-radius: 100%;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
    }
    
    .carousel-button.left {
        left: 10px;
    }
    
    .carousel-button.right {
        right: 10px;
    }
    
    .carousel-button:hover, .scroll-button:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }    

    .localizacao{
        padding: 40px 40px 80px;
    }

    .footer {
        background-image: url(assets/footer/bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #fff;
    }

    .footer_logo{
        width: 100%;
        align-items: center;
    }

    .footer_logo img{
        width: 40%;
    }

    .footer_container{
        padding: 40px;
    }
}

  
  /* Estilo para desktops grandes */
  @media (min-width: 1441px) {
    br{
        display: none;
    }

    .nav-button{
        font-size: 24px;
        width: 350px;
    }

    .profile {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .profile-container{
        padding: 80px 20px;
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
    }

    .profile-photo{
        width: 100%;
        object-fit: cover;
    }

    .profile-photo img{
        width: 80%;
    }

    .profile-info {
        max-width: 50%; /* Garante que a div não exceda 50% */
        display: flex;
        gap: 10px;
    }


    .current-activities{
        display: block;
    }

    .social-icons{
        display: block;
    }

    .current-activities-desktop{
        display: none;
    }

    .divider{
        display: none;
    }


    .current-activities{
        width: 100%;
    }

    .livros {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .divider{
        display: none;
    }

    .livro{
        display: flex;
        flex-direction: column;
        justify-content: start;
        width: 250px;
    }

    .livro h3{
        font-size: 18px;
    }

    .livro a{
        width: 100%;
    }

  }