/****** General Styles ******/
body {
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif; /* Exemplo de fonte, idealmente usar a do site original */
    margin: 0;
    padding: 0;
    background-color: #1d4046; /* Fundo escuro principal com base em #224851 */
    color: #F0F8FF; /* Nova cor de texto clara principal */
    line-height: 1.6;
}

.container {
    max-width: 1280px; /* Similar ao max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
}

.page-container {
    padding-top: 2rem; /* py-8 */
    padding-bottom: 2rem; /* py-8 */
}

.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #42f5bf; /* Verde neon */
  text-align: center;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', sans-serif;
}

.btn {
  display: inline-block;
  background-color: #1aceb0;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary {
    background-color:#1aceb0; /* Nova cor de fundo do botão primário */
    color: #FFFFFF; /* Nova cor de texto do botão primário */
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #00c5aa; /* cor ao passar o mouse */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    color: #FFFFFF; /* Nova cor de texto do hover */
}

.btn-discover {
    background-color: #1aceb0; /* Nova cor de fundo do botão discover */
    color: #FFFFFF; /* Nova cor de texto do botão discover */
}

.btn-discover:hover {
    transform: scale(1.05);
    background-color: #00c5aa; /* cor ao passar o mouse */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    color: #FFFFFF; /* Nova cor de texto do hover */
}

.link-arrow {
    font-weight: 600; /* font-semibold */
    color: #88c5c2; /* Nova cor para link-arrow, tom de #224851 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #3496aa; /* Nova cor para hover do link-arrow, tom mais escuro de #224851 */
}

.content-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2a5a60; /* Novo fundo para cards, baseado em #224851 */
    padding: 2rem; /* p-8 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); /* shadow-xl */
}

@media (min-width: 768px) { /* md: */
    .content-card-wrapper {
        flex-direction: row;
    }
}

.content-card-wrapper-column {
    background-color: #2a5a60; /* Novo fundo para cards, baseado em #224851 */
    padding: 2rem; 
    border-radius: 0.5rem; 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); 
}

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

.section-title-uppercase {
    font-size: 1.875rem; /* text-3xl */
    font-weight: bold;
    text-align: center;
    color: #F3F4F6; /* --text-on-dark-primary */
    margin-bottom: 2.5rem; /* mb-10 */
    text-transform: uppercase;
}

/****** Navbar Styles ******/


.nav-container {
    max-width: 1280px;
    margin: auto;
    padding:0.2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.5rem; /* h-28 */
    opacity: 85%;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 1rem; /* space-x-4 */
}

.logo {
    height: 5rem; /* h-24 */
    width: auto;
    object-fit: contain;
    border-radius: 100%;
}

.menu-desktop ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 1rem; /* space-x-4 */
}

.menu-desktop ul li a {
   
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 0.75rem; /* px-3 py-2 */
    border-radius: 0.375rem; /* rounded-md */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    transition: background-color 0.3s, color 0.3s;
}

.menu-desktop ul li a:hover {
    background-color: #0D9488; /* hover:bg-teal-600 */
    color: #ffffff;
}

.menu-mobile-icon {
    display: none; /* Escondido por padrão, aparece em telas menores */
}

#mobile-menu-button {
    background-color: #ffffff;
    border: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: #374151; /* text-gray-700 */
    font-size: 1.5rem;
    cursor: pointer;
}

#mobile-menu-button:hover {
    color: #111827; /* hover:text-gray-900 */
    background-color: #F3F4F6; /* hover:bg-gray-100 */
}

.mobile-menu-dropdown {
    display: none; /* Escondido por padrão */
    position: absolute;
    width: 100%;
    background-color: rgba(30, 41, 59, 0.95); /* bg-slate-800 bg-opacity-95 */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 0.5rem 0.75rem; /* px-2 pt-2 pb-3 sm:px-3 */
}

.mobile-menu-dropdown.active {
    display: block;
}

.mobile-menu-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-dropdown ul li a {
    display: block;
    padding: 0.5rem 0.75rem; /* px-3 py-2 */
    border-radius: 0.375rem; /* rounded-md */
    font-size: 1rem; /* text-base */
    font-weight: 500; /* font-medium */
    color: #F3F4F6; /* text-[var(--text-on-dark-primary)] */
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu-dropdown ul li a:hover {
    background-color: #4B5563; /* hover:bg-gray-700 */
    color: #ffffff;
}

@media (max-width: 767px) { /* md:hidden */
    .menu-desktop {
        display: none;
    }
    .menu-mobile-icon {
        display: flex;
    }
}

/****** Video Section (Homepage) ******/
.video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-mute-button {
    position: absolute;
    bottom: 2.5rem; /* bottom-10 */
    right: 2.5rem; /* right-10 */
    z-index: 3; /* Acima do overlay e vídeo */
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.75rem; /* p-3 */
    border-radius: 9999px; /* rounded-full */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-mute-button:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.video-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
    padding: 1rem;
}

.video-overlay h1 {
    font-size: 2.25rem; /* text-4xl */
    font-weight: bold;
    margin-bottom: 1rem; /* mb-4 */
}

.video-overlay p {
    font-size: 1.25rem; /* text-xl */
    margin-bottom: 2rem; /* mb-8 */
}

@media (min-width: 768px) { /* md: */
    .video-overlay h1 {
        font-size: 3.75rem; /* md:text-6xl */
    }
    .video-overlay p {
        font-size: 1.875rem; /* md:text-3xl */
    }
}

#main-content {
    /* Target para o scroll suave, não precisa de estilos visuais */
}

/****** Hero Section (Homepage) ******/
.hero-section {
    padding-top: 5rem; /* py-20 */
    padding-bottom: 5rem;
}

@media (min-width: 768px) { /* md: */
    .hero-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
}

.hero-section .container {
    text-align: center;
}

.hero-section h2 {
    font-size: 2.25rem; /* text-4xl */
    font-weight: bold;
    margin-bottom: 1rem; /* mb-4 */
    color: #F3F4F6; /* --text-on-dark-primary */
}

.hero-section p {
    font-size: 1.25rem; /* text-xl */
    margin-bottom: 2rem; /* mb-8 */
    color: #BCCFD2; /* Nova cor de texto secundária clara */
}

@media (min-width: 768px) { /* md: */
    .hero-section h2 {
        font-size: 3rem; /* md:text-5xl */
    }
    .hero-section p {
        font-size: 1.5rem; /* md:text-2xl */
    }
}

/****** About Brief Section (Homepage) ******/
.about-brief-section {
    padding-top: 4rem; /* py-16 */
    padding-bottom: 4rem;
}

.profile-image-brief {
    width: 8rem; /* w-32 */
    height: 8rem; /* h-32 */
    border-radius: 9999px; /* rounded-full */
    object-fit: contain;
    margin-bottom: 1.5rem; /* mb-6 */
    border: 4px solid #80c2ca; /* border-[var(--accent-blue)] */
}

.about-brief-section .text-content {
    text-align: center;
}

.about-brief-section .text-content h2 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 600; /* font-semibold */
    margin-bottom: 0.75rem; /* mb-3 */
    color: #ffffff; /* Texto dentro do card branco */
}

.about-brief-section .text-content p {
    line-height: 1.75; /* leading-relaxed */
    margin-bottom: 1rem; /* mb-4 */
    color: #ffffff; /* Texto dentro do card branco */
}

@media (min-width: 768px) { /* md: */
    .profile-image-brief {
        width: 12rem; /* md:w-48 */
        height: 12rem; /* md:h-48 */
        margin-bottom: 0; /* md:mb-0 */
        margin-right: 2.5rem; /* md:mr-10 */
    }
    .about-brief-section .text-content {
        text-align: left;
    }
}

/****** Gallery Section (Homepage) ******/
.gallery-section {
    padding-top: 4rem; /* py-16 */
    padding-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
    width: 100%;
    height: 400px;        /* Altura fixa para padronizar os cards */
    overflow: hidden;
    border-radius: 15px;  /* Ou 0 para canto reto */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* opcional para estilo */
}



.gallery-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.05); /* shadow-lg */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    object-fit: cover;    /* Cobre o card sem distorcer */
}

.gallery-item:hover {
    transform: scale(1.05); /* aumenta 5% */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* sombra mais forte */
    cursor: pointer;
}

.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (min-width: 640px) { /* sm: */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) { /* md: */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem; /* md:gap-8 */
    }
}

/****** Emagrecimento Section & Condicoes Section (Homepage) - Cards ******/
.emagrecimento-section, .condicoes-section {
    padding-top: 4rem; /* py-16 */
    padding-bottom: 4rem;
}

.emagrecimento-section .container > h2, .condicoes-section .container > h2 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: bold;
    color: #F3F4F6; /* --text-on-dark-primary */
    margin-bottom: 1rem; /* mb-4 */
    text-align: center;
}

.emagrecimento-section .container > p {
    font-size: 1.125rem; /* text-lg */
    color: #D1D5DB; /* --text-on-dark-secondary */
    margin-bottom: 2rem; /* mb-8 */
    max-width: 48rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75; /* leading-relaxed */
    text-align: center;
}

.cards-grid, .cards-grid-condicoes {
    display: grid;
    gap: 2rem; /* gap-8 */
}

.card {
    background-color: #173338; /* bg-white-card em tema escuro ou bg-gray-800 */
    padding: 1.5rem; /* p-6 */
    border-radius: 0.8rem; /* rounded-lg */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(66, 245, 191, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; /* muda o cursor para "mãozinha" ao passar o mouse */
}

.card:hover {
    transform: scale(1.02); /* aumenta o tamanho do card levemente */
    box-shadow: 0 8px 30px rgba(0, 255, 212, 0.2); /* sombra mais intensa no hover */
    cursor: pointer;
   
}

.card h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: #42f5bf; /* text-[var(--accent-blue)] */
    margin-bottom: 0.5rem; /* mb-2 */
}

.card p {
    color: #BCCFD2; /* Nova cor de texto secundária clara */
    line-height: 1.6;
}

@media (min-width: 768px) { /* md: */
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cards-grid-condicoes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) { /* lg: */
    .cards-grid-condicoes {
        grid-template-columns: repeat(3, 1fr);
    }
}

.condicoes-section .text-center {
    margin-top: 2.5rem; /* mt-10 */
}

/****** Call to Action Final Section (Homepage) ******/
.cta-final-section {
    padding-top: 4rem; /* py-16 */
    padding-bottom: 4rem;
}

.cta-final-section .container {
    text-align: center;
}

.cta-final-section h2 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: bold;
    margin-bottom: 1.5rem; /* mb-6 */
    color: #F3F4F6; /* --text-on-dark-primary */
}

.cta-final-section p {
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 2rem; /* mb-8 */
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
    color: #D1D5DB; /* --text-on-dark-secondary */
}

/****** Footer Styles ******/
footer {
    background-color: #172425; /* Novo fundo para footer */
    color: #E0E8EA; /* Nova cor de texto principal do footer */
    padding-top: 1 rem; /* py-8 */
    margin-top:  auto; /* mt-12 */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5 rem; /* gap-8 */
}

.footer-grid h3 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    margin-bottom: 1rem; /* mb-4 */
}

.footer-grid p, .footer-grid address, .footer-grid ul li a {
    font-size: 0.875rem; /* text-sm */
    color: #9CA3AF; /* text-gray-400 */
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    space-y: 0.5rem; /* space-y-2 */
}

.footer-grid ul li a:hover {
    color: white;
}

.footer-logo {
    height: 2.5rem; /* h-10 */
    width: auto; /* w-24, mas auto é melhor com height fixo */
    object-fit: contain;
    margin-top: 1rem; /* mt-4 */
    opacity: 0.75;
}

.footer-bottom {
    margin-top: 2rem; /* mt-8 */
    border-top: 1px solid #374151; /* border-gray-700 */
    padding-top: 2rem; /* pt-8 */
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem; /* text-sm */
    color: #9CA3AF; /* text-gray-400 */
}

.footer-bottom p:last-child {
    margin-top: 0.25rem; /* mt-1 */
}

@media (min-width: 768px) { /* md: */
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/****** About Page Styles ******/
.about-page-section .content-card-wrapper-column {
    background-color: #2a5a60; /* Card branco */
    color: #ffffff; /* Texto escuro no card branco */
}

.about-page-section .page-title {
    color: #42f5bf; /* Título escuro */
}

.page-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: #cbe4f9; /* Azul claro puxado pro branco */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

.page-subtitle2 {
  font-size: 1rem;
  color: #7aa3b3; /* Cinza azulado suave */
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  opacity: 0.8;
}

.about-content-flex {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* gap-8 */
}

.about-image-container {
    width: 100%;
}

.profile-image-large {
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.05); /* shadow-lg */
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
}

.about-text-container {
    width: 100%;
    font-size: 1.125rem; /* text-lg */
    color: #ffffff; /* text-secondary */
}

.about-text-container p {
    margin-bottom: 1.5rem; /* space-y-6 (aproximado) */
}

@media (min-width: 768px) { /* md: */
    .about-content-flex {
        flex-direction: row;
        align-items: flex-start;
    }
    .about-image-container {
        width: 33.3333%; /* md:w-1/3 */
        flex-shrink: 0;
    }
    .profile-image-large {
        max-width: 24rem; /* md:max-w-sm */
    }
    .about-text-container {
        width: 66.6666%; /* md:w-2/3 */
    }
}

/****** Services Page Styles ******/
.services-page-section .page-title {
    color: #42f5bf; /* Título claro no fundo escuro */
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
    margin-top: 2rem; /* mt-8 */
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06); /* shadow-md */
    transition: box-shadow 0.3s ease;
    
}

.service-card {
  background-color: #00e0ff0d;
  border-radius: 16px;
  padding: 2rem;
  margin: 0.5rem auto;
  max-width: 700px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(66, 245, 191, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; /* muda o cursor para "mãozinha" ao passar o mouse */
}

.service-card:hover {
    transform: scale(1.02); /* aumenta o tamanho do card levemente */
    box-shadow: 0 8px 30px rgba(0, 255, 212, 0.2); /* sombra mais intensa no hover */
}
.consulta-card {
  background-color: #00e0ff0d;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 700px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(66, 245, 191, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; /* muda o cursor para "mãozinha" ao passar o mouse */
}

.consulta-card:hover {
  transform: scale(1.02); /* aumenta o tamanho do card levemente */
  box-shadow: 0 8px 30px rgba(0, 255, 212, 0.2); /* sombra mais intensa no hover */
}

.consulta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #00fcd1;
  margin-bottom: 1rem;
}

.consulta-text {
  font-size: 1rem;
  color: #cbe4f9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.consulta-btn {
  display: inline-block;
  background-color: #1aceb0;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.consulta-btn:hover {
  background-color: #00c5aa;
}

.service-card h2 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: #42f5bf; /* text-gray-900 */
    /* dark:text-white */
    margin-bottom: 0.5rem; /* mb-2 */
    text-align: center;
}

.service-card p {
    color: #ffffff; /* text-gray-700 */
    /* dark:text-gray-300 */
    font-size: 1rem; /* text-base */
    text-align: center;
}

@media (min-width: 768px) { /* md: */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) { /* lg: */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/****** Contact Page Styles ******/
.contact-page-section .page-title {
    color: #42f5bf; /* --accent-primary */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
    align-items: flex-start;
    max-width: 56rem; /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
    
}

.contact-info-card, .map-card {
    background-color: #30676F;
    border: 1px solid #4e8a91;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* content-card, similar a bg-gray-800 */
    padding: 1.5rem; /* Ajustar conforme necessário, original usa content-card */
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.05);
}

.contact-info-card h2, .map-card h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    color: #42f5bf; /* text-[var(--text-primary)] */
    margin-bottom: 1.5rem; /* mb-6 */
}

.map-card h2 {
    text-align: center;
}

.contact-info-card address {
    font-style: normal;
    margin-bottom: 2rem;
}

.contact-info-card address p {
    margin-bottom: 1rem; /* space-y-4 (aproximado) */
    color: #D1D5DB; /* text-[var(--text-secondary)] */
}

.contact-info-card address a {
    color: #ffffff; /* text-[var(--accent-primary)] */
    text-decoration: none;
}

.contact-info-card address a:hover {
    color: #3B82F6; /* text-[var(--accent-secondary)] */
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25D366; /* Cor do WhatsApp */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
}

.btn-whatsapp svg {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    margin-right: 0.5rem; /* mr-2 */
}

.horario-funcionamento {
    margin-top: 2rem; /* mt-8 */
}

.horario-funcionamento h3 {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    color: #F3F4F6; /* text-[var(--text-primary)] */
    margin-bottom: 0.75rem; /* mb-3 */
}

.horario-funcionamento p {
    color: #D1D5DB; /* text-[var(--text-secondary)] */
    margin-bottom: 0.25rem;
}

.map-container {
    /* aspect-w-16 aspect-h-9 */
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 9 / 16 * 100% */
    border-radius: 0.375rem; /* rounded-md */
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 1024px) { /* lg: */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Adicionar mais estilos conforme necessário para replicar o Tailwind */

