/* ============================================
   RESET E ESTILOS GERAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f9fc 0%, #ffffff 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #616668;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Offset para âncoras com header fixo */
section[id] {
    scroll-margin-top: 80px;
}

section:target:before {
    content: "";
    display: block;
    height: 80px;
    margin-top: -80px;
    visibility: hidden;
}

/* ============================================
   VARIÁVEIS DE CORES - TEMA AZUL MARINHO
   ============================================ */
:root {
    --color1: #3c7cc4;
    --color2: #a9d7eb;
    --color3: #1b4e72;
    --color4: #6288a2;
    --color5: #9cbccc;
    --primary: var(--color1);
    --secondary: var(--color3);
    --accent: var(--color2);
    --dark: var(--color3);
    --light: var(--color5);
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #6c757d;
}

/* ============================================
   BACKGROUNDS DAS SECTIONS
   ============================================ */
section.sobre {
    background: linear-gradient(135deg, rgba(156, 188, 204, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
}

section.massagens {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(169, 215, 235, 0.08) 100%);
}

section.galeria {
    background: linear-gradient(135deg, rgba(156, 188, 204, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
}

section.blog {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(169, 215, 235, 0.08) 100%);
}

section.contactos {
    background: linear-gradient(135deg, rgba(156, 188, 204, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
}

section.precario {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(169, 215, 235, 0.08) 100%);
}

/* ============================================
   BOTÕES FLUTUANTES
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(60, 124, 196, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(60, 124, 196, 0.4);
}

.back-to-top {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(60, 124, 196, 0.4);
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(248, 251, 253, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(27, 78, 114, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

header.scrolled {
    padding: 5px 0;
    background: linear-gradient(135deg, rgba(248, 251, 253, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.logo-img {
    max-height: 100px;
    height: auto;
    width: auto;
    transition: all 0.3s ease;
}

header.scrolled .logo-img {
    max-height: 70px;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

.logo i {
    margin-right: 10px;
    color: var(--primary);
}

/* Navegação */
nav ul {
    display: flex;
    list-style: none;
}

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

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-family: 'Poppins', sans-serif;
}

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

nav ul li a.active {
    color: var(--primary);
}

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

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

/* Remove borda de foco dos links do menu */
nav ul li a:focus {
    outline: none;
}

nav ul li a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 3px;
}

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

.mobile-menu-btn:focus {
    outline: none;
}

.mobile-menu-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.3s forwards;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(60, 124, 196, 0.3);
}

.btn:focus {
    outline: none;
}

.btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.btn-marcar-agora {
    background: linear-gradient(135deg, var(--success) 0%, #218838 100%);
}

.btn-marcar-agora:hover {
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* ============================================
   TÍTULOS DE SEÇÃO
   ============================================ */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* ============================================
   SOBRE NÓS
   ============================================ */
.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.sobre-text {
    flex: 1;
}

.sobre-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.sobre-text p {
    margin-bottom: 15px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* ============================================
   MASSAGENS
   ============================================ */
.massagens-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.massagem-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.massagem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.massagem-card .card-img {
    height: 200px;
    overflow: hidden;
}

.massagem-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.massagem-card:hover .card-img img {
    transform: scale(1.1);
}

.massagem-card .card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.massagem-card .card-content h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.massagem-card .card-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.massagem-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.massagem-meta .preco {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.massagem-meta .duracao {
    background-color: var(--light);
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--dark);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Botão Ver Detalhes nos cards */
.massagem-card .btn.ver-detalhes {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    font-family: 'Poppins', sans-serif;
}

.massagem-card .btn.ver-detalhes:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 124, 196, 0.3);
}

.massagem-card .btn.ver-detalhes:focus {
    outline: none;
}

/* ============================================
   MODAIS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: white;
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 1;
}

.modal-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.close-modal:focus {
    outline: none;
}

.close-modal:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

.modal-body {
    padding: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Modal específica para marcação */
#marcacaoModal .modal-content {
    max-width: 600px;
}

/* Modal de confirmação */
#modalConfirmacaoMarcacao .modal-content {
    max-width: 500px;
}

#modalSucesso .modal-content {
    max-width: 500px;
}

/* Conteúdo específico de modal de massagem */
.modal-massagem-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-massagem-meta {
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-massagem-meta span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.modal-massagem-meta strong {
    color: var(--secondary);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

/* Modal de termos */
.modal-terms-content {
    padding: 20px;
}

.modal-terms-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.modal-terms-content h3 {
    color: var(--secondary);
    margin-top: 25px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.modal-terms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.modal-terms-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-terms-content li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* ============================================
   GALERIA
   ============================================ */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
    animation: fadeIn 1s;
}

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

.slide-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.slide-caption {
    text-align: center;
    padding: 15px;
    background: white;
    color: var(--dark);
    font-weight: 400;
    border-top: 1px solid #eee;
    font-size: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.slideshow-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.slideshow-controls button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slideshow-controls button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(60, 124, 196, 0.3);
}

.slideshow-controls button:focus {
    outline: none;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* ============================================
   PREÇÁRIO
   ============================================ */
.precario-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.preco-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    padding: 40px 25px;
    text-align: center;
}

.preco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.preco-card .card-content h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   CONTACTOS
   ============================================ */
.contactos-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item div h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--secondary);
}

.contact-item div p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #666;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

/* ============================================
   FORMULÁRIOS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(60, 124, 196, 0.1);
}

/* Checkbox de termos */
.termos-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background-color: var(--gray-light);
    border-radius: 8px;
}

.termos-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    margin-top: 3px;
    flex-shrink: 0;
}

.termos-checkbox label {
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.termos-links {
    display: inline;
}

.termos-links a {
    color: var(--primary);
    text-decoration: underline;
    margin: 0 5px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.termos-links a:hover {
    color: var(--secondary);
}

/* Mensagens de erro */
.error-message {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.field-error {
    border-color: var(--danger) !important;
}

.field-error:focus {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25) !important;
}

/* ============================================
   BLOG 
   ============================================ */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-card .card-img {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.blog-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

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

/* CONTEÚDO DO CARD - ESTRUTURA CORRETA */
.blog-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.blog-card .card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary);
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.blog-card .card-content p {
    flex: 1;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--gray-dark);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.blog-meta i {
    color: var(--primary);
}

/* BOTÃO NO FINAL DO CARD */
.blog-card .card-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2a4a65 100%);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about p {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 100px;
    height: auto;
    width: auto;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--accent);
    min-width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: translateY(-3px);
}

.social-icons a:focus {
    outline: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-developer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #aaa;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.footer-developer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.footer-developer a:hover {
    color: #4a6fa5;
    text-decoration: underline;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

/* Animações ao scroll */
.card, .section-title, .sobre-img, .sobre-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.animated, 
.section-title.animated, 
.sobre-img.animated, 
.sobre-text.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ACESSIBILIDADE - FOCUS VISIBLE
   ============================================ */
/* Apenas elementos interativos recebem outline visível */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Links do menu não têm outline padrão */
nav ul li a:focus {
    outline: none;
}

nav ul li a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Remove outline de elementos não interativos */
div:focus,
section:focus,
header:focus,
footer:focus {
    outline: none;
}

/* ============================================
   ESTADOS ESPECIAIS
   ============================================ */
.no-massagens,
.no-precos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.no-massagens p,
.no-precos p {
    color: var(--dark);
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* ============================================
   CORREÇÕES ESPECÍFICAS
   ============================================ */

/* Lightbox para galeria */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Lupa na imagem da galeria */
.slide {
    position: relative;
    cursor: pointer;
}

.slide::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.slide:hover::after {
    opacity: 1;
}

/* Ajustes de menu mobile */
nav ul.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

/* Corrigir a visibilidade do menu */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    nav ul.active {
        display: flex !important;
    }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .sobre-content {
        flex-direction: column;
    }
    
    .sobre-img, .sobre-text {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .blog-cards,
    .massagens-cards,
    .precario-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Navegação mobile */
    nav ul {
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Hero ajustes */
    .hero {
        margin-top: 110px;
        height: 80vh;
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* Section padding */
    section {
        padding: 60px 0;
    }
    
    /* Cards em uma coluna */
    .blog-cards,
    .massagens-cards,
    .precario-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Galeria */
    .slide img {
        height: 400px;
    }
    
    .slide-title-overlay {
        padding: 15px;
        font-size: 1rem;
    }
    
    /* Botões flutuantes */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button,
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Modal ajustes */
    .modal {
        padding: 20px 15px;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    /* Logo menor */
    .logo-img {
        max-height: 70px;
    }
    
    header.scrolled .logo-img {
        max-height: 50px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-img {
        max-height: 80px;
    }
}

@media (max-width: 576px) {
    .hero {
        margin-top: 90px;
        height: 70vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    /* Galeria mobile */
    .slide img {
        height: 300px;
    }
    
    .slide-caption {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* Contactos */
    .contactos-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    /* Cards de preço */
    .preco-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .preco-valor {
        font-size: 2rem;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 15px;
    }
    
    .footer-logo-img {
        max-height: 60px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Botões flutuantes menores */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button,
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}