/* Estilos Globais */
:root {
    --primary-color: #5E6AD2; /* Azul mais moderno */
    --secondary-color: #8A4FFF; /* Roxo vibrante */
    --accent-color: #FF7E5F; /* Laranja coral para acentos */
    --text-color: #2D3047; /* Azul escuro quase preto para texto */
    --light-text: #ffffff;
    --background-color: #ffffff;
    --light-background: #F8F9FC; /* Fundo mais suave */
    --dark-background: #2D3047; /* Para seções escuras */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Transição mais suave */
    --shadow: 0 10px 30px rgba(45, 48, 71, 0.1);
    --shadow-hover: 0 15px 35px rgba(45, 48, 71, 0.15);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --section-spacing: 120px; /* Espaçamento consistente entre seções */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--background-color);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}

ul {
    list-style: none;
}

/* Botões modernos com efeitos de hover refinados */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.btn-primary.success {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: skewX(-15deg);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Botão secundário */
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 13px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: none;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--light-text);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(45, 48, 71, 0.08);
    z-index: 1000;
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(45, 48, 71, 0.12);
}

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

/* Logo estilizado */
.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    position: relative;
}

.logo-fullname {
    font-size: 1.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.logo-profession {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

/* Navegação moderna */
nav {
    position: relative;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    font-size: 1rem;
    padding: 5px 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 5px;
}

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

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

/* Efeito de destaque para link ativo */
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    width: 100%;
    opacity: 1;
}

/* Logo na imagem hero */
.logo-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.logo-profession {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    white-space: nowrap;
}

.logo-profession::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: none;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder::before {
    content: none;
}

/* Ajustes para o logo no footer */
footer .logo {
    color: var(--light-text);
}

footer .logo-fullname {
    background: linear-gradient(135deg, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

footer .logo-profession {
    color: #bbb;
}

/* Remover tracinho do logo em header e footer */
header h1.logo-fullname::after,
header h2.logo-profession::after,
footer h1.logo-fullname::after,
footer h2.logo-profession::after {
    content: none !important;
}

/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1010;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Overlay para o menu mobile */
body.menu-active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 990;
}

body.menu-active {
    overflow: hidden;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Efeito de partículas flutuantes */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: rgba(0, 0, 0, 0.25);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho na borda */
.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shimmer 8s infinite linear;
    z-index: -1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white !important;
    position: relative;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    margin: 25px auto;
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8;
    padding-top: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Estilos gerais para todas as seções */
section {
    padding: 100px 0;
    position: relative;
}

/* Toast de sucesso */
#toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    transform: translateY(0);
    opacity: 1;
    transition: var(--transition);
}

#toast.hidden {
    transform: translateY(30px);
    opacity: 0;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon svg {
    stroke: var(--light-text);
}

.toast-message {
    font-weight: 500;
}

/* Estilo para mensagens de erro nos campos do formulário */
.form-group .error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

.form-group .help-message {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 1px #e74c3c;
}

.form-group input.warning {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Sobre */
.sobre {
    background-color: var(--light-background);
    overflow: hidden;
    position: relative;
    padding: var(--section-spacing) 0;
}

/* Elementos decorativos de fundo */
.sobre::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.08), rgba(138, 79, 255, 0.08));
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

.sobre::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.05), rgba(138, 79, 255, 0.05));
    z-index: 0;
    animation: float 18s infinite ease-in-out reverse;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sobre-image {
    position: relative;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sobre-image.animate {
    transform: translateY(0);
    opacity: 1;
}

/* Efeito de borda brilhante */
.sobre-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    z-index: -1;
    border-radius: calc(var(--border-radius-lg) + 2px);
    background-size: 400% 400%;
    animation: gradientBorder 6s ease infinite;
    opacity: 0.7;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1);
}

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

.sobre-text {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sobre-text.animate {
    transform: translateY(0);
    opacity: 1;
}

.sobre-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.sobre-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 3px;
}

.sobre-text .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.sobre-text p {
    margin-bottom: 22px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.05rem;
    opacity: 0.9;
}

.credentials {
    margin-top: 35px;
    padding-left: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.credentials li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    box-shadow: 0 2px 5px rgba(138, 79, 255, 0.3);
}

/* Seção Liberação Miofascial */
.liberacao-miofascial {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 249, 252, 0.97));
    position: relative;
    overflow: hidden;
    padding: var(--section-spacing) 0;
}

/* Padrão de fundo sutil */
.liberacao-miofascial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235e6ad2' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
}

/* Elementos decorativos */
.liberacao-miofascial::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.08), rgba(94, 106, 210, 0.08));
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.card {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 45px 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(94, 106, 210, 0.08);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.card.animate {
    transform: translateY(0);
    opacity: 1;
}

/* Efeito de destaque no card */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
    border-radius: 2px;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(94, 106, 210, 0.15);
}

.card:hover::before {
    height: 100%;
}

.card-icon {
    margin-bottom: 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.1), rgba(138, 79, 255, 0.1));
    color: var(--primary-color);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.card:hover .card-icon::before {
    opacity: 1;
    animation: shimmerIcon 1.5s forwards;
}

@keyframes shimmerIcon {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    transform: scale(1.05);
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(94, 106, 210, 0.3);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.card:hover h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 1.05rem;
    flex-grow: 1;
}

/* Processo de tratamento */
.treatment-process {
    margin-top: 80px;
    margin-bottom: 60px;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow);
}

.treatment-process h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* CTA Container */
.cta-container {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(108, 99, 255, 0.05));
    border-radius: var(--border-radius);
}

.cta-container p {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Seção Depoimentos */
.depoimentos {
    background-color: var(--light-background);
    position: relative;
    overflow: hidden;
    padding: var(--section-spacing) 0;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.05), rgba(138, 79, 255, 0.05));
    z-index: 0;
    animation: float 18s infinite ease-in-out;
}

.depoimentos::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.05), rgba(94, 106, 210, 0.05));
    z-index: 0;
    animation: float 15s infinite ease-in-out reverse;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(94, 106, 210, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    box-shadow: none;
}

.reviewer-details h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.review-stars {
    color: #FFBA00;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.star {
    display: inline-block;
}

.testimonial-content {
    margin-top: 15px;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.8;
}

.see-more-reviews {
    margin-top: 40px;
    text-align: center;
}

.google-logo {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
}

.google-logo img {
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .reviewer-photo {
        width: 50px;
        height: 50px;
    }
    
    .reviewer-details h3 {
        font-size: 1.1rem;
    }
    
    .see-more-reviews {
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .see-more-reviews .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Seção Contato */
.contato {
    background-color: var(--light-background);
    position: relative;
    overflow: hidden;
    padding: var(--section-spacing) 0;
}

/* Elementos decorativos */
.contato::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.05), rgba(138, 79, 255, 0.05));
    z-index: 0;
    animation: float 18s infinite ease-in-out;
}

.contato::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.05), rgba(94, 106, 210, 0.05));
    z-index: 0;
    animation: float 15s infinite ease-in-out reverse;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(94, 106, 210, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.contact-info:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

/* Efeito de gradiente sutil no fundo */
.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.03), rgba(138, 79, 255, 0.03));
    z-index: -1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.1), rgba(138, 79, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-item:hover .info-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(94, 106, 210, 0.2);
}

/* Efeito de brilho no ícone */
.info-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.info-item:hover .info-icon::before {
    opacity: 1;
    animation: shimmerIcon 1.5s forwards;
}

.info-text h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.info-text p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1.05rem;
}

.info-text a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.info-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.info-text a:hover {
    color: var(--secondary-color);
}

.info-text a:hover::after {
    width: 100%;
}

.social-media {
    margin-top: 50px;
    position: relative;
}

.social-media::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 3px;
}

.social-media h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 600;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.1), rgba(138, 79, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.social-icon:hover {
    color: var(--light-text);
    transform: translateY(-5px) scale(1.1);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(94, 106, 210, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

.contact-form {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(94, 106, 210, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.contact-form:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(94, 106, 210, 0.15);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: rgba(248, 249, 252, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(94, 106, 210, 0.1);
    background-color: #fff;
}

.form-group:focus-within label {
    color: var(--primary-color);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 15px;
    padding: 16px 28px;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* Mapa do Google */
.map-container {
    margin-top: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.google-map {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Link direto para o Google Maps */
.direct-link-container {
    text-align: center;
    margin-top: 15px;
}

.direct-link-container p {
    font-size: 0.95rem;
    color: #666;
}

.direct-link-container a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.direct-link-container a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer Moderno */
footer {
    background-color: var(--dark-background);
    color: var(--light-text);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos no footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

footer .logo {
    color: var(--light-text);
    font-size: 1.6rem;
    position: relative;
    transition: transform 0.3s ease;
}

footer .logo:hover {
    transform: translateY(-3px);
}

footer .logo-fullname {
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 1.8rem;
}

footer .logo-profession {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

footer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 400px;
    position: relative;
}

/* Efeito de brilho no rodapé */
footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%);
}

/* Melhorias visuais gerais */
.hero, .sobre, .liberacao-miofascial, .contato {
    position: relative;
}

.hero::after, .sobre::after, .liberacao-miofascial::after, .contato::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    z-index: -1;
    pointer-events: none;
}

/* Animações adicionais */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Animações para elementos */
.section-header, .sobre-content, .card, .treatment-process, .process-steps, .cta-container, .contact-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.animate, .sobre-content.animate, .card.animate, .treatment-process.animate, .process-steps.animate, .cta-container.animate, .contact-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(1) { --animation-order: 1; }
.card:nth-child(2) { --animation-order: 2; }
.card:nth-child(3) { --animation-order: 3; }

.step:nth-child(1) { --animation-order: 1; }
.step:nth-child(2) { --animation-order: 2; }
.step:nth-child(3) { --animation-order: 3; }
.step:nth-child(4) { --animation-order: 4; }

.info-item:nth-child(1) { --animation-order: 1; }
.info-item:nth-child(2) { --animation-order: 2; }
.info-item:nth-child(3) { --animation-order: 3; }

/* Responsividade adicional */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content {
        margin: 0 auto;
    }

    .image-placeholder {
        height: 350px;
        margin-top: 30px;
    }

    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .treatment-process {
        padding: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .google-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .treatment-process {
        padding: 25px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sobre-image {
        max-height: 400px;
        width: 100%;
        margin: 0 auto;
    }
    
    .sobre-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center top;
    }
}

@media (max-width: 576px) {
    nav ul {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .image-placeholder {
        height: 250px;
    }
    
    .contact-info, .contact-form {
        padding: 25px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .google-map {
        height: 300px;
    }
    
    .sobre-image {
        max-height: 350px;
    }
    
    .sobre-image img {
        height: 350px;
    }
}

/* Botão flutuante do WhatsApp */
/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.whatsapp-float:hover {
    background-color: #20c35b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

/* Banner promocional */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 25px 0;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 48, 71, 0.1);
    z-index: 10;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-.895-3-2-3-3 .895-3 2 .895 3 2 3zM34 90c1.657 0 3-1.343 3-3s-.895-3-2-3-3 .895-3 2 .895 3 2 3z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E") center/cover;
    opacity: 0.3;
    z-index: 0;
}

/* Efeito de movimento no fundo */
.promo-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shimmerPromo 12s infinite linear;
    z-index: 0;
}

@keyframes shimmerPromo {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    text-align: center;
}

.promo-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.promo-icon:hover {
    transform: scale(1.1);
}

.promo-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    transform: rotate(45deg);
    animation: rotate 8s linear infinite;
}

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

.promo-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--light-text);
    position: relative;
    z-index: 1;
}

.promo-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.promo-content .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--light-text);
    padding: 12px 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.promo-content .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        padding: 10px 0;
        gap: 15px;
    }
    
    .promo-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
    }
    
    .promo-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Ajustes para o logo no footer */
footer .logo {
    color: var(--light-text);
}

footer .logo-subtext {
    color: #bbb;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-subtext {
        font-size: 1rem;
    }
    
    .logo-circle {
        width: 150px;
        height: 150px;
    }
    
    .logo-circle::before {
        width: 142px;
        height: 142px;
    }
    
    .logo-circle::after {
        width: 134px;
        height: 134px;
    }
    
    .logo-circle span {
        font-size: 3.5rem;
    }
    
    .logo-name {
        font-size: 2rem;
    }
    
    .logo-profession {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .logo-circle {
        width: 120px;
        height: 120px;
    }
    
    .logo-circle::before {
        width: 114px;
        height: 114px;
    }
    
    .logo-circle::after {
        width: 108px;
        height: 108px;
    }
    
    .logo-circle span {
        font-size: 2.8rem;
    }
    
    .logo-name {
        font-size: 1.8rem;
    }
}
