@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111111;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

main {
    width: 100%;
}

.container {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ====================================== Header Styles ====================================== */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.logo {
    width: 100px;
    margin-bottom: 10px;
}

.logo img {
    width: 100%;
    height: auto;
}

.header-text h3 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.header-text h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.header-text p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}






/* ====================================== Card Styles ====================================== */
.card {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #222222;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


/* ======== Avaliação Card ======== */
.avaliacao {
    padding: 20px;
    text-align: center;
}

.stars {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 18px;
}

.avaliacao p {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.avaliacao h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ======== Agende Card ======== */
.agende {
    position: relative;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    overflow: hidden;
}

.agende-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.agende::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* camada escura */
    z-index: 1;
}

.agende-content {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-left: 0px;
    margin-top: 100px;
    z-index: 2;
    color: #e0e0e0;
}

.agende-icon {
    background-color: #4CAF50;
    color: white;
    width: 35px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.agende-text p {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    width: 100px;
}

.doctor-img {
    position: absolute;
    right: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
}

/* =========== Info Card =========== */
.info {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.info-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-img {
    width: 100%;
    height: 100%;
}

.info::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* camada escura */
    z-index: 1;
}

.info-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.logo-small {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.logo-small img {
    width: 100%;
    height: 100%;
}



















/* ======== Social Wrapper ======== */
.social-wrapper {
    display: flex;
    height: 250px;
    gap: 7px;
    width: 100%; /* Garantir que a largura total seja ocupada */
    background-color: #111111;
}

.horizontal-cards {
    width: 65%; /* Os dois cards deitados ocuparão 75% */
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.vertical-card {
    width: 35%; /* Card em pé ocupará 25% */
    position: relative;
    overflow: hidden;
}

.vertical-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.vertical-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Preto com 50% de transparência */
    z-index: 1;
    border-radius: 10px;
}

.vertical-text {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

/* Estilo dos cards horizontais */
.location, .instagram {
    position: relative;
    width: 100%;
    height: 50%; /* Metade da altura para os cards horizontais */
    overflow: hidden;
    border-radius: 10px;
}

.location img, .instagram img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.location::before, .instagram::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Preto com 50% de transparência */
    z-index: 1;
    border-radius: 10px;
}


.location-text, .insta-text {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: center;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.insta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insta-text i {
    font-size: 18px;
    margin-bottom: 5px;
}




















/* ====================================== Comentarios Título ====================================== */
.card-comentarios {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.comentarios-titulo {
    margin-top: 60px;
    font-family: 'Roboto Slab', serif; /* Fonte elegante */
    font-size: 20px; /* Tamanho do título */
    font-weight: 700; /* Negrito */
    color: #f0f0f0; /* Dourado para destacar */
    letter-spacing: 1px; /* Espaçamento entre as letras */
    text-align: center;
    margin-bottom: 0px;
    text-transform: uppercase; /* Deixar o texto em maiúsculas */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); /* Adiciona uma sombra sutil ao texto */
}

/* ====================================== Comentarios Card ====================================== */
.comentarios {
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    position: relative; /* Necessário para o posicionamento das setas */
    height: 130px;

}

.comentario-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: center;
}

.comentario-content {
    min-width: 300px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease-in-out;
}

.comentario-content.active {
    display: block;
}

.comentario-text {
    font-size: 12px;
    font-weight: 400;
    color: #e0e0e0;
}

.comentario-name {
    font-size: 16px;
    font-weight: 700;
    color: #ceb62f;
    margin-bottom: 8px;
}

/* ====================================== Centralizando as setas ====================================== */
.comentario-arrows {
    display: flex;
    position: absolute; /* As setas ficam dentro do card com posicionamento absoluto */
    top: 50%; /* Centraliza verticalmente */
    left: 50%; /* Centraliza horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta o ponto de origem para o centro */
    margin-top: 20px;
    width: 100%;
    justify-content: space-between; /* Deixa as setas nas extremidades */
}

.arrow-left, .arrow-right {
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: #ceb62f;
    cursor: pointer;
    transition: color 0.3s;
    padding: 10px;
    margin-bottom: 40px;
}

.arrow-left:hover, .arrow-right:hover {
    color: #ffffff;
}




































/* Footer Styles */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #333;
    width: 100%;
}

.footer-logo {
    width: 80px;
    margin-bottom: -5px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

footer p {
    font-size: 13px;
    color: #777;
    text-align: center;
}

/* Responsive Adjustments */
/* @media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header-text h1 {
        font-size: 20px;
    }
    
    .header-text p {
        font-size: 10px;
    }
} */