/* CSS Reset */
:root {
    --vermelho-escuro: #a2241c;
    --preto: #1d1c16;
    --dourado: #e0ca80;
    --vermelho-claro: #de3f42;
    --cinza: #9b9494;
    --dourado: #e0c264;
    --preto: #333;
    --branco: #fff;
    --cinza-claro: #f5f5f5;
    --cinza-borda: #e0e0e0;
    --azul-link: #1a73e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--preto);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 60px; /* Largura fixa para manter o círculo */
    height: 60px; /* Altura igual à largura para formar um círculo perfeito */
    margin-right: 10px;
    background-color: transparent;
    border-radius: 50%; /* Isso cria o efeito redondo */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Garante que a imagem não ultrapasse os limites do círculo */
    border: 2px solid var(--dourado); /* Opcional: borda dourada */
}

.logo-img img {
    width: 100%; /* Preenche todo o espaço do container redondo */
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra todo o espaço sem distorcer */
    object-position: center; /* Centraliza a imagem */
}

.logo-text {
    color: var(--preto);
}

.logo-text h1 {
    font-size: 24px;
    margin-bottom: 2px;
    color: var(--vermelho-escuro);
}

.logo-text p {
    font-size: 12px;
    color: var(--cinza);
    margin-top: -5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--preto);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--vermelho-escuro);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--vermelho-escuro);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--preto);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--vermelho-escuro);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid var(--vermelho-escuro);
}

.btn:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: white;
    color: var(--preto);
}

/* About Section */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--vermelho-escuro);
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--dourado);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInLeft 1s ease;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--preto);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.about-text .signature {
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--vermelho-escuro);
}

/* Menu Section */
.menu {
    background-color: #f5f5f5;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 25px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--preto);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.tab-btn:not(:last-child) {
    margin-right: 10px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--vermelho-escuro);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    color: var(--vermelho-escuro);
}

.tab-btn.active::after, .tab-btn:hover::after {
    width: 100%;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    animation: fadeInUp 0.5s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-item-img {
    height: 200px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.menu-item-title {
    font-size: 1.2rem;
    color: var(--preto);
}

.menu-item-price {
    color: var(--vermelho-escuro);
    font-weight: 600;
}

.menu-item-desc {
    color: #777;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery {
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: white;
    font-size: 2rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 0 15px;
    transition: all 0.3s;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--dourado);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--preto);
}

.testimonial-rating {
    color: var(--dourado);
    margin-top: 10px;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    animation: fadeInLeft 1s ease;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--preto);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dourado);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.contact-info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--preto);
}

.contact-info-text p, .contact-info-text a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-text a:hover {
    color: var(--vermelho-escuro);
}

.contact-form {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--vermelho-escuro);
    box-shadow: 0 0 0 2px rgba(222, 63, 66, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--vermelho-escuro);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: var(--vermelho-claro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--preto);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dourado);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--vermelho-escuro);
    bottom: 0;
    left: 0;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #bbb;
}

.footer-links li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--dourado);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--vermelho-escuro);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-img, .about-text {
        flex: none;
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-slide {
        padding: 20px;
    }
}


.loading-message, .no-reviews, .error-message {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #666;
}

/* Estilos para a seção de depoimentos */
.testimonials {
    background-color: var(--cinza-claro);
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--preto);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--dourado);
}

.section-subtitle {
    text-align: center;
    color: var(--cinza);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Container do slider */
.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Slider de depoimentos */
.testimonial-slider {
    display: flex;
    gap: 2rem;
    padding: 2rem 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

/* Cards de depoimento */
.testimonial-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: var(--branco);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--dourado);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Cabeçalho do card */
.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.author-img {
    position: relative;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.author-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--dourado);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-img img {
    transform: scale(1.05);
}

.author-info {
    flex: 1;
}

.author-info h4 {
    margin: 0;
    color: var(--preto);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.review-date {
    display: block;
    font-size: 0.9rem;
    color: var(--cinza);
    margin-bottom: 0.5rem;
}

/* Avaliação por estrelas */
.rating {
    color: var(--dourado);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 0.8rem 0;
}

/* Texto do depoimento */
.testimonial-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    padding-left: 1.2rem;
    border-left: 2px solid rgba(224, 194, 100, 0.3);
}

/* Detalhes adicionais */
.testimonial-details {
    background: var(--cinza-claro);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-top: 1.2rem;
}

.testimonial-details strong {
    color: var(--preto);
    font-weight: 500;
}

/* Botões de navegação */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--branco);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vermelho-escuro);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.slider-nav:hover {
    background: var(--dourado);
    color: var(--branco);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Botão "Ver mais" */
#ver-mais-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 0.8rem 2rem;
    background: var(--dourado);
    color: var(--branco);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(224, 194, 100, 0.3);
}

#ver-mais-btn:hover {
    background: #d4b24e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(224, 194, 100, 0.4);
}

#ver-mais-btn i {
    margin-right: 0.5rem;
}

/* Modal de avaliações */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: var(--branco);
    margin: 3% auto;
    width: 85%;
    max-width: 850px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cabeçalho do modal */
.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--cinza-borda);
    position: relative;
    background: var(--cinza-claro);
}

.business-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: var(--preto);
    display: flex;
    align-items: center;
}

.business-info h3 i {
    margin-right: 0.8rem;
    color: var(--vermelho-escuro);
}

.business-address {
    margin: 0 0 1rem 0;
    color: var(--cinza);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.business-address i {
    margin-right: 0.5rem;
    color: var(--vermelho-escuro);
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.average-rating {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--preto);
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-star {
    color: #ccc;
    font-size: 1.2rem;
}

.rating-star.filled {
    color: var(--dourado);
}

.total-reviews {
    color: var(--cinza);
    font-size: 0.95rem;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.8rem;
    color: var(--cinza);
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-modal:hover {
    color: var(--preto);
    transform: scale(1.1);
}

/* Container das avaliações */
.modal-testimonials {
    padding: 2rem;
}

.review-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--cinza-borda);
    border-color: #1d1c16;
    background-color: #1d1c16;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dourado);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: var(--preto);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.reviewer-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--cinza);
    flex-wrap: wrap;
}

.local-guide-badge {
    color: var(--azul-link);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.local-guide-badge i {
    font-size: 0.8rem;
}

.review-date {
    color: var(--cinza);
    font-size: 0.9rem;
}

.review-rating {
    margin: 0.5rem 0 1rem;
    display: flex;
    gap: 0.2rem;
}

.review-star {
    color: #ccc;
    font-size: 1.1rem;
}

.review-star.filled {
    color: var(--dourado);
}

.review-content {
    margin: 1rem 0;
    color: var(--preto);
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    background: var(--cinza-claro);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
}

.detail-key {
    color: var(--cinza);
}

.detail-value {
    color: var(--preto);
    font-weight: 500;
}

/* Resposta do restaurante */
.review-reply {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    border-left: 3px solid var(--dourado);
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--preto);
    font-weight: 600;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.reply-header i {
    color: var(--vermelho-escuro);
}

.reply-author {
    color: var(--azul-link);
}

.reply-date {
    color: var(--cinza);
    font-weight: normal;
}

.reply-content {
    color: var(--preto);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Títulos do modal */
.modal-testimonials::before {
    content: "Depoimentos";
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--cinza-borda);
}

.modal-testimonials::after {
    display: block;
    font-size: 1rem;
    color: var(--cinza);
    margin-top: -1.2rem;
    margin-bottom: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        padding: 1.5rem;
    }
    
    .author-img img {
        width: 60px;
        height: 60px;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .testimonial-slider {
        gap: 1rem;
        padding: 1rem 0.5rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-date {
        margin-left: 66px; /* Alinhar com o nome do revisor */
    }
}