/* (removido) .footer-contato-horario não é mais utilizado */
.footer-contato {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 350px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}
.footer-contato h3 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white) !important;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social a i {
    color: var(--white) !important;
}
.footer-social a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(167, 126, 182, 0.4);
}
.footer-social a:hover i {
    color: var(--dark-color) !important;
}
.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 0;
}
/* Footer Extra */
.footer-extra {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 2rem 0;
    margin-top: 0;
}
.footer-extra .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.whatsapp-float i {
    font-size: 26px;
}
.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 14px 24px rgba(0,0,0,0.25);
    filter: brightness(1.05);
}
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-float i {
        font-size: 22px;
    }
}
.footer-infos {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-horario, .footer-instagram, .footer-maps {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 350px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}
.footer-horario h3, .footer-instagram h3, .footer-maps h3 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}
.footer-instagram iframe, .footer-maps iframe {
    margin: 0.5rem auto 1rem auto;
    display: block;
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.footer-maps p {
    font-size: 1rem;
    margin-top: 0.5rem;
}
@media (max-width: 900px) {
    .footer-infos {
        flex-direction: column;
        gap: 2rem;
        align-items: center; /* centraliza colunas no mobile */
    }
    /* Mantém as cores originais no mobile; apenas ajusta largura */
    .footer-contato, .footer-horario, .footer-instagram, .footer-maps {
        max-width: 100%;
    }
}

/* Layout flexível para contato + formulário */
.contato-flex {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center; /* centraliza o bloco de contatos */
    flex-wrap: wrap;
}
.footer-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center; /* centraliza colunas no desktop */
    align-items: center;
    margin-bottom: 2rem;
}
@media (max-width: 900px) {
    .contato-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .contato-flex .contato-info,
    .contato-flex .contato-agendamento {
        max-width: 100%;
    }
}
.footer-contato, .footer-horario, .footer-instagram, .footer-maps {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
    margin: 0 auto 2rem; /* centraliza e dá espaçamento vertical */
}
/* (removido) estilos de checkbox do formulário antigo */
/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Rosa Suave - mais clara que Crayola Salmon */
    /* Paleta Rosa-Roxo Claro (mais para o rosa) */
    /* Paleta inspirada na imagem enviada */
    --primary-color: #A77EB6;      /* Lavanda mais intensa */
    --secondary-color: #E3BFD6;    /* Rosa lavanda claro */
    --accent-color: #F3EAF7;       /* Fundo lavanda claríssimo */
    --gradient-color: #C7B6DD;     /* Gradiente lavanda suave */
    --highlight-color: #7B3F8C;    /* Roxo médio, mais vibrante */
    --dark-color: #4B2352;         /* Roxo escuro */
    --light-color: #F8F5ED;        /* Bege claro para backgrounds */
    --white: #FFFFFF;
    --text-color: #5A2D5C;         /* Roxo médio para texto principal */
    --shadow: 0 4px 16px rgba(167, 126, 182, 0.10);
    --shadow-hover: 0 8px 32px rgba(123, 63, 140, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

/* Remoção global do sublinhado dos links */
a {
    text-decoration: none;
}
a:hover, a:focus {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--highlight-color);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Formulário de Contato e Agendamento */
/* (removido) estilos do formulário de contato/agendamento não utilizados */
.btn.btn-primary {
    background: var(--highlight-color) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: var(--shadow);
    font-weight: 700;
    background: var(--highlight-color) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: var(--shadow);
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--gradient-color));
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 0.8s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s;
    width: fit-content;
    min-width: fit-content;
    max-width: 100%;
    margin: 18px auto 0 auto;
    font-weight: 600;
}
.btn.btn-primary:hover {
    background: linear-gradient(90deg, var(--highlight-color), var(--primary-color));
    box-shadow: var(--shadow-hover);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    /* Para adicionar imagem de fundo personalizada, descomente a linha abaixo: */
    /* background-image: url('images/hero-bg.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Imagem de fundo com leve camada escura para legibilidade */
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('images/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    background: var(--highlight-color);
    color: var(--white);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: fit-content;
    min-width: fit-content;
    max-width: 100%;
}

.btn.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--gradient-color));
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 0.2s, box-shadow 0.2s;
    width: fit-content;
    min-width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.2rem 3rem;
}

.btn i {
    margin-right: 0.5rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 3rem;
    position: relative;
}

.footer-contato a {
    color: var(--dark-color);
    text-decoration: none; /* sem sublinhado nos contatos do footer */
    display: inline-block; /* para centralizar corretamente */
}
.footer-contato a:hover {
    color: var(--highlight-color);
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Serviços Section */
.servicos {
    background: linear-gradient(120deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Botões de Toggle de Categorias */
.servicos-toggle {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: white;
    border: 3px solid var(--accent-color);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.toggle-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: var(--dark-color);
    box-shadow: var(--shadow-hover);
}

.toggle-btn.active i {
    transform: scale(1.2);
}

/* Animação de fade para as categorias */
.servicos-categoria {
    animation: fadeInCategory 0.5s ease-in-out;
}

@keyframes fadeInCategory {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Categorias de Serviços */
.servicos-categoria {
    margin-bottom: 5rem;
}

.servicos-categoria:last-child {
    margin-bottom: 0;
}

.categoria-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--gradient-color) 100%);
    border-radius: 15px;
    color: var(--white);
    box-shadow: var(--shadow);
}

.categoria-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.categoria-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.categoria-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-style: italic;
}

/* Subcategorias */
.subcategoria {
    margin-bottom: 4rem;
}

.subcategoria:last-child {
    margin-bottom: 0;
}

.subcategoria-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 60%, var(--dark-color) 100%);
    border-left: 6px solid var(--secondary-color);
    border-radius: 8px;
}

.subcategoria-header i {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.subcategoria-header h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.servico-icon {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.servico-card h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.servico-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Sobre Section */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Centraliza e limita o tamanho da foto do Sobre */
.sobre-image {
    display: flex;
    justify-content: center;
}

.sobre-image img {
    width: 100%;
    max-width: 380px; /* limita o tamanho máximo da foto */
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sobre-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

/* Avaliações Section */
.avaliacoes {
    background-color: var(--gradient-color);
}

.avaliacoes-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    margin-top: -1rem;
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.instagram-embed-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 400px;
    position: relative;
}

/* Loading state para Instagram embeds */
.instagram-embed-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid var(--accent-color);
    border-top-color: var(--dark-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 1;
    transition: opacity 0.3s;
}

.instagram-embed-container.loaded::before {
    opacity: 0;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.instagram-media {
    background: white !important;
    border-radius: 10px !important;
    box-shadow: var(--shadow-hover) !important;
    max-width: 540px !important;
    width: 100% !important;
}

/* Fallback para cards antigos (caso queira manter) */
.avaliacao-card {
    background-color: var(--accent-color);
    border: 1px solid var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.avaliacao-card p {
    font-style: italic;
    line-height: 1.8;
}

.avaliacoes-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary-color);
}

.avaliacoes-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Contato Section */
.contato {
    text-align: center;
}

.contato-info {
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    gap: 1rem 2rem; /* row-gap column-gap */
    align-items: center;
    justify-content: center; /* centraliza os itens */
    max-width: 900px; /* largura máxima para alinhamento visual */
    margin: 0 auto; /* centraliza dentro do container */
}

.contato-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto; /* evita virar coluna única */
    font-size: 1.1rem;
    gap: 0.75rem; /* espaçamento entre ícone e texto */
    margin: 0.25rem 0; /* espaçamento vertical suave */
}

.contato-item i {
    color: var(--dark-color);
    font-size: 1.5rem;
}

.contato-item a {
    color: var(--text-color);
    text-decoration: none; /* remove sublinhado */
    transition: color 0.3s ease;
}

.contato-item a:hover {
    color: var(--dark-color);
}

.contato-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.contato-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--dark-color);
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.contato-social a:hover {
    background-color: var(--dark-color);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-embed-container {
        min-height: 500px;
    }

    .contato-info {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    /* Subcategorias responsivo tablet */
    .subcategoria-header {
        padding: 1.2rem 1.5rem;
    }
    
    .subcategoria-header h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }
    
    .categoria-header {
        padding: 1.2rem;
    }
    
    .categoria-header i {
        font-size: 2rem;
    }
    
    .categoria-header h3 {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: -1.5rem;
    }
    
    /* Subcategorias responsivo mobile */
    .subcategoria {
        margin-bottom: 3rem;
    }
    
    .subcategoria-header {
        flex-direction: row;
        gap: 0.8rem;
        padding: 1rem 1.2rem;
        border-left-width: 4px;
    }
    
    .subcategoria-header i {
        font-size: 1.5rem;
    }
    
    .subcategoria-header h4 {
        font-size: 1.1rem;
    }
    
    /* Toggle buttons responsivo */
    .servicos-toggle {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .toggle-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .toggle-btn i {
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servico-card,
.avaliacao-card {
    animation: fadeIn 0.6s ease-out;
}

/* ===============================================
   AVALIAÇÕES - LAYOUT OTIMIZADO COM EMBEDS
   =============================================== */

/* Layout principal das avaliações */
.avaliacao-completa {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Alternância de posição - avaliações pares (2ª, 4ª, etc) */
.avaliacao-completa:nth-child(even) {
    flex-direction: row-reverse;
}

/* Embed do Instagram menor */
.instagram-embed-small {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    width: auto;
}

.instagram-embed-small .instagram-media {
    max-width: 320px !important;
    min-width: 320px !important;
}

/* Card de texto da avaliação */
.avaliacao-texto {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
}

.avaliacao-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.avaliacao-origem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.avaliacao-origem i {
    font-size: 1.2rem;
}

/* Comentário/Depoimento */
.avaliacao-comentario {
    position: relative;
    padding: 1.5rem 2rem;
    background: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    margin: 0;
}

.avaliacao-comentario i.fa-quote-left {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.avaliacao-comentario i.fa-quote-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.avaliacao-comentario p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
}

/* Footer da avaliação */
.avaliacao-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.avaliacao-tratamento {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    font-size: 0.95rem;
    margin: 0;
}

.avaliacao-tratamento i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.btn-ver-mais {
    background: var(--highlight-color) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: var(--shadow);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--dark-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-ver-mais:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-ver-mais i {
    font-size: 0.8rem;
}

/* Responsivo para avaliações */
@media (max-width: 1024px) {
    .avaliacao-completa {
        max-width: 900px;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .avaliacao-texto {
        padding: 1.8rem;
    }
}

@media (max-width: 768px) {
    .avaliacao-completa,
    .avaliacao-completa:nth-child(even) {
        flex-direction: column;
        max-width: 600px;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .instagram-embed-small {
        width: 100%;
    }
    
    .instagram-embed-small .instagram-media {
        max-width: 100% !important;
        min-width: 280px !important;
    }
    
    .avaliacao-texto {
        padding: 1.5rem;
    }
    
    .avaliacao-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .avaliacao-comentario {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .avaliacao-comentario p {
        font-size: 1rem;
    }
    
    .avaliacao-texto {
        padding: 1.2rem;
    }
    
    .btn-ver-mais {
        width: 100%;
        justify-content: center;
    }
    
    .instagram-embed-small .instagram-media {
        max-width: 100% !important;
        min-width: 260px !important;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }
    
    .categoria-header {
        padding: 1.2rem;
    }
    
    .categoria-header i {
        font-size: 2rem;
    }
    
    .categoria-header h3 {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: -1.5rem;
    }
}
