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

body {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: #ff7a8a;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
}

/* MENU DESKTOP */
.menu-desktop {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-desktop a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    transition: 0.3s;
    font-size: 16px;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.menu-desktop a:hover {
    color: #ff7a8a;
}

.menu-desktop a i.fa-instagram {
    font-size: 24px;
}

.admin-icon {
    background: rgba(255, 122, 138, 0.15);
    border-radius: 50%;
    padding: 6px 10px !important;
    position: relative;
    cursor: pointer;
}

.admin-icon:hover {
    background: rgba(255, 122, 138, 0.3);
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #ff3366;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* MENU MOBILE */
.menu-mobile-container {
    display: none;
    position: relative;
}

.menu-mobile-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.menu-mobile-btn span {
    width: 100%;
    height: 3px;
    background: #ff7a8a;
    border-radius: 3px;
    transition: 0.3s;
}

.menu-mobile-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-mobile-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-mobile-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu-mobile-dropdown {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 260px;
    background: #111;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 122, 138, 0.3);
}

.menu-mobile-dropdown.open {
    right: 20px;
}

.menu-mobile-dropdown a {
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 12px;
    transition: 0.3s;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.menu-mobile-dropdown a:hover {
    background: #ff7a8a;
    color: white;
}

@media (max-width: 768px) {
    .menu-desktop {
        display: none;
    }
    .menu-mobile-container {
        display: block;
    }
    .header {
        padding: 15px 20px;
    }
    .logo {
        font-size: 18px;
    }
}

/* BANNER */
.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slide {
    width: 100%;
    display: none;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.dot.active {
    background: #ff7a8a;
    width: 30px;
    border-radius: 10px;
}

/* BOTÃO */
.btn {
    background: #ff7a8a;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btn:hover {
    background: #ff5a6e;
    transform: scale(1.05);
}

/* SOBRE */
.sobre {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.sobre-imagem {
    flex: 1;
    min-width: 250px;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    color: #ff7a8a;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sobre-texto h3 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.sobre-texto p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sobre-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    background: rgba(255, 122, 138, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: #ff7a8a;
}

/* CARDS SERVIÇOS */
.cards {
    padding: 60px 40px;
}

.section-titulo {
    text-align: center;
    margin-bottom: 40px;
}

.section-titulo h2 {
    font-size: 36px;
    color: #ff7a8a;
    margin-bottom: 10px;
}

.section-titulo p {
    color: #ccc;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background: #111;
    padding: 20px;
    border-radius: 16px;
    width: 450px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.card:hover {
    transform: translateY(-8px);
    background: #1a1a1a;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.card h3 {
    font-size: 20px;
    color: #ff7a8a;
}

/* REMOVER QUADRADO AZUL DE TODOS OS ELEMENTOS CLICÁVEIS */
a, button, .card, .dot, .btn, .menu-mobile-btn, .admin-icon, .fechar-modal, .star {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

a:focus, button:focus, .card:focus, .dot:focus, .btn:focus, .menu-mobile-btn:focus {
    outline: none;
}

/* MODAL SERVIÇO */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: #1a1a1a;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #ff7a8a;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
}

.modal-content h2 {
    color: #ff7a8a;
    margin-bottom: 15px;
}

.modal-content p {
    margin: 10px 0;
    line-height: 1.5;
    color: #ccc;
}

.fechar-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}

.fechar-modal:hover {
    color: #ff7a8a;
}

/* BOTÃO QUERO AGENDAR CENTRALIZADO */
#btnAgendarModal {
    display: table;
    margin: 25px auto 0 auto;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

/* ANIMAÇÃO DO WHATSAPP (JÁ EXISTE) */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0; }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== NOVO: ANIMAÇÃO PARA O ÍCONE DE AGRADECIMENTO ===== */
@keyframes pulseIcon {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.85; }
    100% { transform: scale(1); opacity: 1; }
}

.icon-pulse {
    animation: pulseIcon 1s ease-in-out infinite;
    display: inline-block;
}

#previewIcone {
    display: inline-block;
    transition: transform 0.2s ease;
}

/* DEPOIMENTOS */
.depoimentos {
    padding: 60px 40px;
    background: #0a0a0a;
}

.depoimentos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.depoimentos-lista {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.depoimento-card {
    background: rgba(255, 122, 138, 0.08);
    border: 1px solid rgba(255, 122, 138, 0.2);
    border-radius: 20px;
    padding: 20px;
}

.depoimento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.depoimento-nome {
    font-weight: bold;
    color: #ff7a8a;
    font-size: 16px;
}

.depoimento-nota {
    color: #ffcc00;
    font-size: 14px;
}

.depoimento-texto {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
}

.depoimento-resposta {
    background: rgba(255, 122, 138, 0.08);
    border-left: 3px solid #ff7a8a;
    padding: 12px;
    margin-top: 12px;
    border-radius: 12px;
}

.resposta-label {
    color: #ff7a8a;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
}

.depoimento-resposta p {
    color: #ccc;
    margin: 0;
    font-size: 13px;
}

.depoimento-resposta small {
    font-size: 10px;
    color: #888;
    margin-top: 5px;
    display: block;
}

.admin-date {
    font-size: 10px;
    color: #666;
    margin-top: 8px;
}

.depoimento-form {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 122, 138, 0.05);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 138, 0.2);
}

.depoimento-form h3 {
    margin-bottom: 20px;
    color: #ff7a8a;
    font-size: 20px;
}

.depoimento-form input,
.depoimento-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.depoimento-form input:focus,
.depoimento-form textarea:focus {
    outline: none;
    border-color: #ff7a8a;
}

.depoimento-form button {
    width: 100%;
}

/* MÉDIA DE AVALIAÇÕES */
.rating-average-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.rating-stars-display {
    color: #FFD700;
    font-size: 22px;
}

.rating-average-box {
    background: rgba(255, 122, 138, 0.1);
    border-radius: 50px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid rgba(255, 122, 138, 0.2);
}

.rating-value {
    font-size: 18px;
    font-weight: 600;
    color: #ff7a8a;
}

.rating-stars-display {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.rating-stars-display i {
    font-size: 16px;
}

.rating-stars-display i.fa-star,
.rating-stars-display i.fa-star-half-alt {
    color: #ffcc33;
}

.rating-stars-display i.far.fa-star {
    color: #555;
}

.rating-count {
    font-size: 14px;
    color: #aaa;
}

/* SELETOR DE ESTRELAS */
.stars-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 10px 0;
}

.star {
    font-size: 28px;
    cursor: pointer;
    color: #555;
    transition: 0.2s;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.star.active,
.star:hover {
    color: #ffcc33;
}

/* TOAST */
.toast {
    position: fixed;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    backdrop-filter: blur(12px);
    color: #ff7a8a;
    padding: 0.7rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    z-index: 4000;
    border: 1px solid #ff7a8a;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* MODAL LOGIN */
.modal-login {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.modal-login-content {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    max-width: 360px;
    width: 90%;
    padding: 30px 25px;
    border-radius: 24px;
    border: 1px solid #ff7a8a;
    text-align: center;
    position: relative;
}

.modal-login-content i {
    font-size: 55px;
    margin-bottom: 15px;
    color: #ff7a8a;
}

.modal-login-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ff7a8a;
}

.modal-login-content p {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.modal-login-content input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0 20px;
    background: #1a1a1a;
    border: 1px solid #ff7a8a;
    border-radius: 12px;
    color: white;
    font-size: 14px;
}

.btn-modal {
    width: 100%;
    padding: 12px;
    background: #ff7a8a;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-modal:hover {
    background: #ff5a6e;
}

.status-msg {
    margin-top: 15px;
    font-size: 12px;
}

/* PAINEL ADMIN */
.modal-admin {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10002;
    justify-content: center;
    align-items: center;
}

.modal-admin-content {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 24px;
    border: 1px solid #ff7a8a;
    overflow-y: auto;
    position: relative;
}

.modal-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 122, 138, 0.3);
    position: sticky;
    top: 0;
    background: #1a1a1a;
}

.modal-admin-header h2 {
    font-size: 1.3rem;
    color: #ff7a8a;
    margin: 0;
}

.minimize-btn {
    background: rgba(255, 122, 138, 0.5);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* ESTILO MINIMIZADO */
.modal-admin.minimized {
    background: transparent !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    pointer-events: none !important;
}

.modal-admin.minimized .modal-admin-content {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: auto !important;
    min-width: 260px !important;
    max-width: 280px !important;
    max-height: 50px !important;
    overflow: hidden !important;
    cursor: pointer;
    border-radius: 30px !important;
    pointer-events: auto !important;
    transition: all 0.3s ease;
}

.modal-admin.minimized .modal-admin-content:active {
    transform: scale(0.97);
}

.modal-admin.minimized .modal-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    padding: 8px 16px !important;
    background: #1a1a1a !important;
    border-radius: 30px !important;
    width: 100%;
    cursor: pointer;
}

.modal-admin.minimized .modal-admin-header h2 {
    font-size: 14px !important;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.modal-admin.minimized .minimize-btn {
    background: rgba(255, 122, 138, 0.5);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 10px;
}

.modal-admin.minimized .modal-admin-body {
    display: none !important;
}

.modal-admin-body {
    padding: 20px 25px;
}

.admin-stats {
    background: rgba(255, 122, 138, 0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.admin-section {
    margin-bottom: 25px;
}

.admin-section h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #ff7a8a;
}

.admin-testimonial-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 3px solid #ff7a8a;
}

.admin-testimonial-item.pending {
    border-left-color: #ffaa33;
}

.admin-testimonial-item strong {
    color: #ff7a8a;
}

.admin-stars {
    color: #ffcc33;
    font-size: 0.8rem;
}

.admin-message {
    font-size: 0.85rem;
    margin: 8px 0;
    font-style: italic;
}

.admin-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.admin-approve {
    background: #00cc66;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    font-size: 0.7rem;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.admin-responder {
    background: #ff7a8a;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    font-size: 0.7rem;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.admin-delete {
    background: #ff3366;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    font-size: 0.7rem;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.admin-resposta-preview {
    background: rgba(255, 122, 138, 0.1);
    padding: 8px;
    border-radius: 8px;
    margin: 8px 0;
}

.logout-btn {
    background: #ff3366;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 15px;
    /* CORREÇÃO DO QUADRADO AZUL */
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* MODAL RESPONDER */
.modal-resposta {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10003;
    align-items: center;
    justify-content: center;
}

.modal-resposta-content {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    max-width: 500px;
    width: 90%;
    padding: 25px;
    border-radius: 24px;
    border: 1px solid #ff7a8a;
    position: relative;
}

.modal-resposta-content h3 {
    color: #ff7a8a;
    margin-bottom: 20px;
}

.depoimento-original {
    background: rgba(255, 122, 138, 0.1);
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.modal-resposta-content textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #ff7a8a;
    border-radius: 12px;
    color: white;
    resize: vertical;
    margin-bottom: 20px;
}

.fechar-modal-resposta {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.fechar-modal-resposta:hover {
    color: #ff7a8a;
}

/* MODAL AGRADECIMENTO */
.agradecimento-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.agradecimento-overlay.fechar {
    animation: fadeOut 0.3s ease forwards;
}

.agradecimento-modal {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 40px;
    padding: 40px 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 2px solid #ff7a8a;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.agradecimento-modal h2 {
    color: #ff7a8a;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.agradecimento-modal p {
    color: #ddd;
    font-size: 16px;
    margin: 10px 0;
}

.agradecimento-icone {
    margin-bottom: 20px;
}

.agradecimento-check {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-block;
    margin: 15px 0;
    color: #22c55e;
}

.agradecimento-estrelas i {
    color: #ffcc33;
    font-size: 24px;
    margin: 0 3px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .banner-slide img {
        max-height: 300px;
    }
    .sobre {
        padding: 50px 20px;
    }
    .sobre-container {
        flex-direction: column;
        text-align: center;
    }
    .sobre-info {
        justify-content: center;
    }
    .cards {
        padding: 50px 20px;
    }
    .card {
        width: 100%;
        max-width: 350px;
    }
    .card img {
        height: 150px;
    }
    .depoimentos {
        padding: 50px 20px;
    }
    .depoimentos-container {
        flex-direction: column;
    }
    .depoimento-form {
        order: -1;
    }
    .section-titulo h2 {
        font-size: 28px;
    }
    .whatsapp {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .agradecimento-modal {
        padding: 30px 25px;
    }
    .agradecimento-modal h2 {
        font-size: 22px;
    }
    .rating-average-box {
        flex-wrap: wrap;
        gap: 6px;
        padding: 8px 18px;
    }
}

/* CORREÇÃO DO QUADRADO FANTASMA AZUL - PARA TODOS OS ELEMENTOS */
a, button, .card, .dot, .btn, .menu-mobile-btn, .admin-icon, 
.fechar-modal, .star, .btn-modal, .minimize-btn, .admin-approve, 
.admin-responder, .admin-delete, .logout-btn, .fechar-modal-resposta,
.menu-desktop a, .menu-mobile-dropdown a {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a:focus, button:focus, .card:focus, .dot:focus, .btn:focus, 
.menu-mobile-btn:focus, .admin-icon:focus, .star:focus,
.menu-desktop a:focus, .menu-mobile-dropdown a:focus {
    outline: none !important;
}

/* CORREÇÃO DO AZUL FANTASMA NO PAINEL MINIMIZADO */
.modal-admin.minimized,
.modal-admin.minimized *,
.modal-admin.minimized .modal-admin-content,
.modal-admin.minimized .modal-admin-header,
.modal-admin.minimized h2,
.modal-admin.minimized .minimize-btn {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.modal-admin.minimized:active,
.modal-admin.minimized .modal-admin-content:active,
.modal-admin.minimized .modal-admin-header:active,
.modal-admin.minimized .minimize-btn:active {
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    border-color: #ff7a8a !important;
}

.modal-admin.minimized .modal-admin-content {
    transition: all 0.2s ease;
}

.modal-admin.minimized .modal-admin-content:active {
    transform: scale(0.98);
}

/* ============================================ */
/* CORREÇÃO - TRAVAR FUNDO SEM FUNDO PRETO      */
/* ============================================ */

/* TRAVAR ROLAGEM QUANDO O PAINEL ADMIN ESTIVER ABERTO */
body.modal-admin-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Remove o fundo preto, deixa transparente */
.modal-admin {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent !important;
    z-index: 10002;
    justify-content: center;
    align-items: center;
}

/* CORREÇÃO DO AZUL FANTASMA NO PAINEL MINIMIZADO */
.modal-admin.minimized,
.modal-admin.minimized *,
.modal-admin.minimized .modal-admin-content,
.modal-admin.minimized .modal-admin-header,
.modal-admin.minimized h2,
.modal-admin.minimized .minimize-btn {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.modal-admin.minimized:active,
.modal-admin.minimized .modal-admin-content:active,
.modal-admin.minimized .modal-admin-header:active,
.modal-admin.minimized .minimize-btn:active {
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    border-color: #ff7a8a !important;
}

.modal-admin.minimized .modal-admin-content {
    transition: all 0.2s ease;
}

.modal-admin.minimized .modal-admin-content:active {
    transform: scale(0.98);
}

/* REMOVER AZUL FANTASMA DE TODOS OS ELEMENTOS CLICÁVEIS DENTRO DO PAINEL MINIMIZADO */
.modal-admin.minimized button,
.modal-admin.minimized div,
.modal-admin.minimized span,
.modal-admin.minimized i,
.modal-admin.minimized h1,
.modal-admin.minimized h2,
.modal-admin.minimized h3 {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.modal-admin.minimized button:focus,
.modal-admin.minimized div:focus,
.modal-admin.minimized .modal-admin-content:focus {
    outline: none !important;
    box-shadow: none !important;
}

.logo-text {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #ffb6c1, #ff5a6e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
}