/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradiente-verde);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
    will-change: opacity, transform, visibility;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    pointer-events: none;
}

.splash-content {
    text-align: center;
    color: white;
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    will-change: transform, opacity;
}

.splash-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    background: rgba(236, 247, 243, 0.932);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid #FCF7F3;
    will-change: transform;
}

.splash-screen h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--fonte-titulos);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.splash-screen p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.splash-loading {
    width: 40px;
    height: 40px;
    margin: 20px auto 0;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    will-change: transform;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ======================
   CLASSES UTILITÁRIAS
   ====================== */
/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* Espaçamentos */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

/* Cores */
.bg-white { background-color: var(--cor-branco); }
.text-primary { color: var(--cor-destaque-verde); }
.text-white { color: white; }

/* Bordas */
.rounded { border-radius: var(--border-radius-padrao); }
.rounded-full { border-radius: 9999px; }

/* Sombras */
.shadow { box-shadow: var(--sombra-padrao); }
.shadow-lg { box-shadow: var(--sombra-elevada); }

/* Transições */
.transition { transition: var(--transicao); }
.transition-colors { transition-property: background-color, border-color, color, fill, stroke; }

/* ======================
   VARIÁVEIS E RESET
   ====================== */
:root {
    /* Cores base */
    --whatsapp-green: #25D366;
    --whatsapp-teal: #128C7E;
    --whatsapp-hover: #20bd5a;
    --whatsapp-shadow: rgba(37, 211, 102, 0.4);
    --transition-base: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --cor-fundo-principal: #FCF7F3;
    --cor-texto-principal: #455F76;
    --cor-texto-secundario: #508D81;
    --cor-destaque-verde: #508D81;
    --cor-destaque-lavanda: #9F9BC5;
    --cor-auxiliar-menta: #ADD7C7;
    --cor-branco: #ffffff;
    --cor-sombra: rgba(0, 0, 0, 0.05);
    --cor-whatsapp: #25D366;
    --cor-hover: rgba(255, 255, 255, 0.15);
    
    /* Cores de gradiente */
    --gradiente-verde: linear-gradient(135deg, var(--cor-destaque-verde), #3a7a6d);
    --gradiente-lavanda: linear-gradient(135deg, var(--cor-destaque-lavanda), #7f7ab8);
    
    /* Transições e animações */
    --transicao-rapida: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transicao-lenta: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    
    /* Tipografia */
    --fonte-titulos: 'Playfair Display', serif;
    --fonte-corpo: 'Montserrat', sans-serif;
    
    /* Espaçamentos e bordas */
    --border-radius-padrao: 16px;
    --border-radius-pequeno: 8px;
    --espacamento-padrao: 24px;
    
    /* Sombras */
    --sombra-padrao: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --sombra-elevada: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --sombra-botao: 0 4px 6px rgba(80, 141, 129, 0.3);
    --sombra-botao-hover: 0 6px 12px rgba(80, 141, 129, 0.4);
}

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

body {
    font-family: var(--fonte-corpo);
    background-color: var(--cor-fundo-principal);
    color: var(--cor-texto-principal);
    line-height: 1.7;
    font-size: 1.125rem; /* 18px */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 5%;
    box-sizing: border-box;
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 15px 5%;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .section-title {
        font-size: 2em !important;
        margin-bottom: 40px !important;
    }
    
    .sobre-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .sobre-img, 
    .sobre-text {
        max-width: 100% !important;
        min-width: 100% !important;
    }
    
    .sobre-text {
        padding: 0 5px;
        color: var(--cor-texto-principal);
    }
    
    .sobre-img img {
        border-radius: 8px;
    }
}

/* ======================
   HERO SECTION
   ====================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #e8f5e9 100%);
    padding: 7.5rem 0 3.75rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%23e0e0e0" stroke-width="0.5" /></svg>');
    background-size: 2.5rem 2.5rem;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    max-width: 50rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--cor-texto-principal);
    line-height: 1.2;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 3.75rem;
    height: 0.25rem;
    background: var(--cor-destaque-verde);
    border-radius: 0.125rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--cor-texto-secundario);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Botões */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transicao);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    white-space: nowrap;
}

.btn i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.btn-primary {
    background: var(--cor-destaque-verde);
    color: var(--cor-branco);
}

.btn-primary:hover {
    background: var(--cor-destaque-verde-escuro);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--cor-destaque-verde);
    border-color: currentColor;
}

.btn-secondary:hover {
    background: rgba(80, 141, 129, 0.1);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, 0.1);
}

/* Imagem do Hero */
.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-0.625rem); }
}

/* Responsivo */
@media screen and (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.1rem; }
}

@media screen and (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 6rem 0 3rem;
    }
    
    .hero h1 { 
        font-size: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
}

/* ======================
   HEADER E NAVEGAÇÃO
   ====================== */
header {
    background-color: var(--cor-fundo-principal);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.625rem 0;
    backdrop-filter: blur(5px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 5rem;
    width: 100%;
}

/* Garante espaço para o conteúdo abaixo do header fixo */
body {
    padding-top: 5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 4.375rem; /* 70px */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Estilo do logo em telas de computador */
@media screen and (min-width: 1024px) {
    .logo-text {
        font-family: 'Parisienne', cursive;
        font-size: 2.8rem;
        color: var(--cor-texto-secundario);
        line-height: 1.1;
        margin-top: 0.5rem;
        transition: var(--transicao);
        letter-spacing: 0.5px;
    }

    .logo-text span {
        font-family: 'Crimson Pro', serif;
        font-size: 0.6em;
        margin-top: 0.1em;
        margin-left: 0.8em;
        font-weight: 400;
        letter-spacing: 0.5px;
        transition: var(--transicao);
        line-height: 1.2;
    }
}

/* Estilo padrão para outras telas */
.logo-text {
    font-family: 'Parisienne', cursive;
    font-size: 2.5rem;
    color: var(--cor-texto-secundario);
    line-height: 1;
    margin-top: 0.5rem;
    transition: var(--transicao);
}

.logo-text span {
    display: block;
    font-family: 'Crimson Pro', serif;
    font-size: 0.7em;
    margin-top: -0.2em;
    margin-left: 0.75em;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transicao);
    line-height: 1;
}

/* Navegação */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--cor-texto-principal);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transicao);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cor-destaque-verde);
    background-color: rgba(80, 141, 129, 0.1);
}

/* Menu Mobile */
.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: var(--cor-destaque-verde);
    cursor: pointer;
    transition: var(--transicao);
}

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

/* Responsivo */
@media screen and (max-width: 1024px) {
    .logo-text { font-size: 1.8rem; }
    .logo-text span { font-size: 0.65em; margin-top: -0.4em; }
}

@media screen and (max-width: 768px) {
    .logo-text { font-size: 1.7rem; }
    .logo-text span { font-size: 0.6em; }
    
    .menu-icon {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--cor-branco);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: var(--transicao);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-text { font-size: 1.5rem; }
    .logo-text span { font-size: 0.55em; }
    .logo-img { height: 3.75rem; }
}

/* Estilo do item ativo - simplificado */
.nav-links a.active {
    background: #455f76;
    color: white !important;
    border-radius: 15px;
    padding: 8px 25px;
}

/* Mobile Menu Button */
.menu-icon {
    display: none;
    font-size: 1.8em;
    color: var(--cor-destaque-verde);
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-icon.active {
    transform: rotate(90deg);
}

/* Mobile Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

/* Mobile styles */
@media screen and (max-width: 992px) {
    .menu-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--cor-fundo-principal);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 15px;
        padding: 90px 20px 40px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 5px 0;
    }

    .nav-links a {
        display: block;
        padding: 16px 20px;
        font-size: 1.1em;
        border-radius: 10px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.8);
        margin: 5px 0;
        text-align: left;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a.active {
        background: #455f76;
        color: white !important;
        transform: none;
    }

    /* Overlay when menu is open */
    .nav-overlay {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Tablet styles */
@media screen and (max-width: 768px) {
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        height: 55px !important;
    }
    
    .logo-text {
        font-size: 1.6em;
        margin-left: 5px;
    }
    
    .logo-text span {
        font-size: 0.55em;
        margin-top: -6px;
        margin-left: 8px;
    }
    
    /* Improve touch targets */
    a, button, .cta-button, .servico-item {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
    
    /* Adjust section spacing */
    section {
        scroll-margin-top: 80px;
    }
}

/* Small mobile styles */
@media screen and (max-width: 480px) {
    .logo {
        gap: 10px;
    }
    
    .logo-text {
        font-size: 1.5em;
        margin-left: 10px;
    }
    
    .logo-text span {
        font-size: 0.55em;
        margin-top: -6px;
        margin-left: 8px;
    }
    
    .logo-img {
        height: 60px;
    }
}

/* Seção Hero */
/* Estilos para o conteúdo principal */
main {
    margin-top: 0;
}

#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/atendimento-mogi-guaçu-e-todo-brasil.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--cor-branco);
    padding: 80px 20px;
    text-align: center;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    #hero {
        padding: 60px 15px;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    #hero h1 {
        font-size: 2em !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
        padding: 0 10px;
    }
    
    #hero p {
        font-size: 1.1em !important;
        line-height: 1.5 !important;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 14px 30px !important;
        font-size: 1em !important;
    }
}
/* Elemento decorativo sutil (opcional) */

#hero h1 {
    font-family: var(--fonte-titulos);
    font-size: 3em;
    margin-bottom: 25px;
    color: var(--cor-branco);
    max-width: 850px;
    line-height: 1.2;
    margin-left: auto; /* Adicionado para centralizar o bloco h1 */
    margin-right: auto; /* Adicionado para centralizar o bloco h1 */
}

#hero p {
    font-size: 1.35em;
    margin-bottom: 40px;
    color: var(--cor-branco);
    max-width: 650px;
    margin-left: auto; /* Adicionado para centralizar o bloco p */
    margin-right: auto; /* Adicionado para centralizar o bloco p */
}

.cta-button {
    display: inline-block;
    background-color: #455f76;
    color: #FCF7F3 !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(69, 95, 118, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #3a4f62;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 95, 118, 0.4);
}

/* Estilos para a introdução dos serviços */
.service-intro {
    text-align: center;
    max-width: 750px;
    margin: -40px auto 60px;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--cor-texto-secundario);
}

/* Estilos Base para Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Estilos Específicos para Botões do WhatsApp */
.whatsapp-button,
.whatsapp-float {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-teal));
    color: white;
    box-shadow: 0 4px 15px var(--whatsapp-shadow);
}

.whatsapp-button::before,
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--whatsapp-teal), var(--whatsapp-green));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 50px;
}

.whatsapp-button i,
.whatsapp-float i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover,
.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--whatsapp-shadow);
}

.whatsapp-button:hover::before,
.whatsapp-float:hover::before {
    opacity: 1;
}

.whatsapp-button:hover i,
.whatsapp-float:hover i {
    transform: scale(1.1);
}

.whatsapp-button:active,
.whatsapp-float:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(18, 140, 126, 0.4);
}

/* ======================
   SEÇÃO SERVIÇOS
   ====================== */
.servicos-section {
    padding: 5rem 0;
    background-color: var(--cor-branco);
}

.servicos-section .section-title {
    color: var(--cor-destaque-verde);
    text-align: center;
    margin-bottom: 1.5rem;
}

.servicos-section .service-intro {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
    color: var(--cor-texto-principal);
    font-size: 1.1rem;
    line-height: 1.7;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.servico-item {
    background: var(--cor-branco);
    border-radius: 0.75rem;
    padding: 2.25rem 2rem;
    box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.06);
    transition: var(--transicao);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.servico-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: var(--gradiente-verde);
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.servico-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.1);
}

.servico-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--cor-destaque-verde);
    margin-bottom: 1.5rem;
    transition: var(--transicao);
    display: inline-block;
}

.servico-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--cor-destaque-lavanda);
}

.servico-item h3 {
    color: var(--cor-destaque-verde);
    margin: 0 0 1.25rem 0;
    font-size: 1.5rem;
    font-family: var(--fonte-titulos);
    font-weight: 600;
    line-height: 1.3;
    transition: var(--transicao);
}

.servico-item:hover h3 {
    color: var(--cor-destaque-lavanda);
}

.servico-item p, .servico-item > p {
    color: var(--cor-texto-principal);
    margin: 0 0 1.25rem 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.servico-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.servico-item li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--cor-texto-principal);
    line-height: 1.6;
    font-size: 1rem;
    transition: var(--transicao);
}

.servico-item li::before {
    content: '✓';
    color: var(--cor-destaque-verde);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.1em;
    transition: var(--transicao);
}

.servico-item:hover li::before {
    color: var(--cor-destaque-lavanda);
    transform: scale(1.2);
}

/* Responsividade */
@media screen and (max-width: 1024px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .servico-item {
        padding: 1.75rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .servicos-section {
        padding: 3.5rem 0;
    }
    
    .servicos-section .service-intro {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .servico-item {
        padding: 1.75rem 1.5rem;
        border-radius: 0.75rem;
    }
    
    .servico-item h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        font-size: 2.25rem !important;
        margin-bottom: 1.25rem !important;
    }
}

@media screen and (max-width: 480px) {
    .servicos-section {
        padding: 3rem 0;
    }
    
    .servicos-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .servicos-section .service-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .servico-item {
        padding: 1.5rem 1.25rem;
    }
    
    .servico-item h3 {
        font-size: 1.3rem;
    }
    
    .servico-item p,
    .servico-item li {
        font-size: 0.95rem;
    }
    
    .service-icon {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
}

/* Seções Gerales */
section {
    padding: 90px 0;
}
section:nth-child(even):not(#cta) {
     background-color: #f8f4f0; /* Tom alternativo um pouco mais quente */
}

.section-title {
    font-family: var(--fonte-titulos);
    font-size: 2.8em;
    color: var(--cor-destaque-verde);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--cor-destaque-lavanda);
    margin: 15px auto 0;
    border-radius: 3px;
}

/* Seção Sobre Mim */
#sobre {
    padding: 5rem 0;
    background-color: var(--cor-fundo-claro);
}

#sobre .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#sobre .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--cor-destaque-verde);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

#sobre .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--cor-destaque-lavanda);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: flex-start;
}

.sobre-img {
    position: relative;
    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.03);
}

.sobre-text h3 {
    color: var(--cor-destaque-lavanda);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.sobre-text p {
    color: var(--cor-texto-principal);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Estilos para a seção de serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.servico-item {
    background: var(--cor-branco);
    border-radius: var(--border-radius-padrao);
    padding: 2.5rem;
    box-shadow: var(--sombra-padrao);
    transition: var(--transicao);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.servico-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-elevada);
}

.servico-item h3 {
    color: var(--cor-destaque-verde);
    margin-bottom: 1.5rem;
    font-family: var(--fonte-titulos);
    font-size: 1.5rem;
}

.servico-item p {
    margin-bottom: 1.5rem;
    color: var(--cor-texto-principal);
}

.servico-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: auto;
}

.servico-item li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.servico-item li:before {
    content: '•';
    color: var(--cor-destaque-verde);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--cor-destaque-verde);
    margin-bottom: 1.5rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .servicos-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        padding: 0 1.5rem;
    }
    
    .servico-item {
        padding: 2rem;
    }
}

/* Estilo para a seção de depoimentos */
.depoimentos-section {
    background-color: #f8f4f0;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.depoimentos-section .section-title {
    text-align: center;
    margin-bottom: 15px;
    color: var(--cor-destaque-verde);
}

.depoimentos-section .section-subtitle {
    text-align: center;
    color: var(--cor-texto-principal, #455F76);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.depoimentos-carrossel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: #f8f4f0;
    min-height: 100px; /* Altura mínima para acomodar as duas linhas */
}

/* Ajuste para telas menores - remove a altura fixa */
@media (max-width: 768px) {
    .depoimentos-carrossel {
        min-height: auto;
    }
}

/* Gradiente expandido para esconder o início/fim do carrossel */
.depoimentos-carrossel::before,
.depoimentos-carrossel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

/* Gradiente na esquerda - apenas #f8f4f0 */
.depoimentos-carrossel::before {
    left: 0;
    background: linear-gradient(90deg, 
        #f8f4f0 0%, 
        rgba(248, 244, 240, 0.9) 40%, 
        rgba(248, 244, 240, 0.6) 70%, 
        rgba(248, 244, 240, 0.3) 90%, 
        rgba(248, 244, 240, 0) 100%);
}

/* Gradiente na direita - apenas #f8f4f0 */
.depoimentos-carrossel::after {
    right: 0;
    background: linear-gradient(90deg, 
        #f8f4f0 0%, 
        rgba(248, 244, 240, 0.9) 40%, 
        rgba(248, 244, 240, 0.6) 70%, 
        rgba(248, 244, 240, 0.3) 90%, 
        rgba(248, 244, 240, 0) 100%);
    transform: scaleX(-1);
}

/* Ajustes para tablets */
@media (max-width: 1024px) {
    .depoimento-card {
        width: 450px;
        min-width: 450px;
        min-height: 200px;
        padding: 25px 30px;
        gap: 15px;
    }

    .depoimento-avatar {
        width: 50px;
        height: 50px;
    }

    .depoimento-texto {
        font-size: 0.9rem;
    }
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .depoimentos-section {
        padding: 50px 0;
    }

    .depoimentos-section .section-subtitle {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .depoimentos-carrossel {
        padding: 20px 0;
        min-height: auto !important;
    }

    .depoimentos-carrossel::before,
    .depoimentos-carrossel::after {
        width: 60px;
    }

    .depoimentos-track {
        padding: 10px 15px;
        gap: 15px;
    }

    /* Esconde a segunda linha */
    .track-bottom {
        display: none !important;
    }

    /* Garante que a primeira linha seja visível */
    .track-top {
        display: flex !important;
    }

    .depoimento-card {
        width: 300px;
        min-width: 300px;
        min-height: 180px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
        margin: 0 5px;
    }

    .depoimento-avatar {
        margin: 0 auto 10px;
    }

    .depoimento-texto {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .depoimento-autor {
        font-size: 0.9rem;
    }

    .depoimento-avaliacao {
        justify-content: center;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .depoimentos-carrossel::before,
    .depoimentos-carrossel::after {
        width: 40px;
    }

    .depoimento-card {
        width: 260px;
        min-width: 260px;
        padding: 12px;
    }
    
    /* Garante que apenas uma linha fique visível */
    .depoimentos-carrossel {
        min-height: auto;
    }
}

.depoimentos-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 15px 20px;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Linha superior - rola da esquerda para a direita */
.track-top {
    animation: scrollLeft 60s linear infinite;
    will-change: transform;
}

/* Linha inferior - rola da direita para a esquerda */
.track-bottom {
    animation: scrollLeft 60s linear infinite reverse;
    margin-left: 0;
    will-change: transform;
}

.depoimento-card {
    background: white;
    border-radius: 12px;
    padding: 30px 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 500px;
    min-width: 500px;
    min-height: 220px; /* Altura mínima aumentada */
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0 10px;
    justify-content: center; /* Centraliza o conteúdo verticalmente */
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.depoimento-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #e0f7fa;
}

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

.depoimento-conteudo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.depoimento-texto {
    color: #455F76;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* Aumentado de 3 para 6 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: auto;
    text-overflow: ellipsis;
    line-clamp: 6; /* Aumentado de 3 para 6 linhas */
    max-height: 10.8em; /* Aproximadamente 6 linhas de texto (1.8em por linha) */
    text-align: left;
}

.depoimento-autor {
    font-weight: 600;
    color: var(--cor-texto-principal, #455F76);
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
}

.depoimento-avaliacao {
    display: flex;
    justify-content: flex-start;
    gap: 3px;
    color: #ffc107;
    font-size: 1rem;
    margin-top: 5px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Removendo a animação scrollRight não utilizada */

/* Pausa a animação quando o mouse está sobre o carrossel */
.depoimentos-carrossel:hover .depoimentos-track {
    animation-play-state: paused;
}

/* Ajuste para garantir que os cards não quebrem linha */
.depoimentos-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

/* Garante que os cards não encolham */
.depoimento-card {
    flex: 0 0 auto;
}

/* Estilos responsivos */
@media screen and (max-width: 1200px) {
    .depoimento-card {
        width: 450px;
        min-width: 450px;
    }
    
    @keyframes scrollLeft {
        100% {
            transform: translateX(calc(-470px * 4));
        }
    }
    
    @keyframes scrollRight {
        100% {
            transform: translateX(calc(-470px * 4));
        }
    }
}

@media screen and (max-width: 992px) {
    .depoimentos-section {
        padding: 50px 0;
    }
    
    .track-bottom {
        margin-left: 0;
    }
    
    .depoimento-card {
        width: 380px;
        min-width: 380px;
        padding: 15px 20px;
    }
    
    .depoimento-texto {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        max-height: 3em; /* Aproximadamente 2 linhas de texto */
    }
    
    @keyframes scrollLeft {
        100% {
            transform: translateX(calc(-400px * 4));
        }
    }
    
    @keyframes scrollRight {
        100% {
            transform: translateX(calc(-400px * 4));
        }
    }
}

@media screen and (max-width: 768px) {
    .depoimento-card {
        width: 300px;
        min-width: 300px;
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .depoimento-avatar {
        margin-bottom: 10px;
    }
    
    .depoimento-texto {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        margin-bottom: 10px;
        max-height: 4.5em; /* Aproximadamente 3 linhas de texto */
    }
    
    .depoimento-autor {
        text-align: center;
    }
    
    .depoimento-avaliacao {
        justify-content: center;
    }
    
    @keyframes scrollLeft {
        100% {
            transform: translateX(calc(-320px * 4));
        }
    }
    
    @keyframes scrollRight {
        100% {
            transform: translateX(calc(-320px * 4));
        }
    }
}

/* Estilo para as qualificações */
.qualificacoes {
    margin: 1.5rem 0;
    padding: 0;
}

.qualificacoes h4 {
    color: var(--cor-texto-principal);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
    display: block;
}

.qualificacoes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualificacoes li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
    color: var(--cor-texto-principal);
    line-height: 1.6;
    font-size: 1.05rem;
}

.qualificacoes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cor-destaque-lavanda);
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-img {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #sobre {
        padding: 3rem 0;
    }
    
    #sobre .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .sobre-text h3 {
        font-size: 1.7rem;
    }
    
    .sobre-text p {
        font-size: 1rem;
    }
    
    .qualificacoes {
        padding: 1.2rem;
    }
    
    .qualificacoes h4 {
        font-size: 1.2rem;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.feature-icon {
    width: 3.125rem;
    height: 3.125rem;
    background: var(--cor-destaque-verde-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    color: var(--cor-destaque-verde);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transicao);
}

.feature-item:hover .feature-icon {
    background: var(--cor-destaque-verde);
    color: var(--cor-branco);
    transform: rotate(5deg) scale(1.1);
}

.feature-text h4 {
    font-size: 1.2rem;
    color: var(--cor-texto-principal);
    margin-bottom: 0.3rem;
}

.feature-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--cor-texto-secundario);
    opacity: 0.9;
}

/* Seção Serviços (Psicoterapia) */
.services {
    padding: 6.25rem 0;
    background-color: var(--cor-branco);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.875rem;
}

.service-card {
    background: var(--cor-branco);
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0 0.3rem 1.25rem rgba(0, 0, 0, 0.05);
    transition: var(--transicao);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.servico-item i.service-icon { /* Ícones específicos para serviços */
    font-size: 2.8em;
    color: var(--cor-destaque-lavanda);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.servico-item h3 {
    font-family: var(--fonte-corpo);
    font-size: 1.5em;
    color: var(--cor-destaque-verde);
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.servico-item:hover h3 {
    color: var(--cor-destaque-lavanda);
}

.servico-item p {
    font-size: 1em;
    margin-bottom: 15px;
    flex-grow: 0.2; /* Faz o parágrafo ocupar espaço disponível */
}
 .servico-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: auto; /* Empurra a lista para baixo se houver espaço */
 }
.servico-item ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95em;
}
.servico-item ul li::before {
    content: "\2713";
    color: var(--cor-destaque-lavanda);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.1em;
}

/* Seção CTA (Chamada para Ação) */
#cta {
    background: var(--cor-destaque-lavanda);
    color: var(--cor-branco);
    text-align: center;
}

#cta .section-title {
    color: var(--cor-branco);
}
 #cta .section-title::after {
    background-color: var(--cor-fundo-principal);
}

#cta p {
    font-size: 1.2em;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
#cta .cta-button { /* Botão na seção CTA */
    background: linear-gradient(135deg, #25D366, #128C7e);
    color: var(--cor-fundo-principal);
    box-shadow: 0 0 20px rgba(37, 255, 102, 0.4);
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}
#cta .cta-button:hover {
    background-color: linear-gradient(135deg, #20bd5a, #0e7a69);
    transform: translateY(-3px);
    box-shadow: 0 0 6px rgba(255, 211, 102, 0.5);
}

/* Rodapé */
footer {
    background-color: var(--cor-texto-principal);
    color: #d0d5db; /* Cor de texto mais clara para contraste */
    text-align: center;
    padding: 50px 0;
}

.social-links {
    margin-bottom: 25px;
}
.social-links p {
    margin-bottom: 10px;
    font-size: 1em;
    color: #e0e5eb;
}

.social-links a {
    color: var(--cor-fundo-principal);
    margin: 0 15px;
    font-size: 1.8em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--cor-auxiliar-menta);
    transform: scale(1.1);
}

footer p {
    margin-top: 10px; /* Reduzido margin-top */
    font-size: 0.95em;
}
footer p strong {
    color: var(--cor-fundo-principal);
}
footer p a {
    color: var(--cor-auxiliar-menta);
    text-decoration: none;
}
footer p a:hover {
    text-decoration: underline;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: visible;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
    line-height: 1;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse 2s infinite;
}

/* Anel de pulso externo */
/* Efeito de pulso removido do ::after */

/* Efeito de brilho e reflexo */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Efeito de anel removido */
.whatsapp-float::after {
    display: none;
}

.whatsapp-float:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover::before {
    opacity: 0.4;
}

/* Centralização perfeita do ícone */
.whatsapp-float i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
    transform-origin: center center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-float:hover i {
    transform: scale(0.95);
}

/* Efeito de anel de pulso */
/* Efeito de anel removido */

/* Efeito de anel de pulso removido */

/* Efeito de brilho pulsante */
@keyframes shine {
    0% {
        background-position: -100px;
    }
    100% {
        background-position: 200px;
    }
}

/* Efeito de brilho no hover */
.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover::before {
    opacity: 0.7;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    transition: all 0.3s ease;
}

/* Efeito hover */
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 255, 102, 0.5);
    animation: none;
}

/* Seção Sobre */
#sobre {
    background-color: #f8f4f0;
    padding: 80px 0;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background: #075e54;
    color: white;
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Responsivo */
@media screen and (max-width: 480px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 20px;
        right: 15px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Responsividade */
@media screen and (max-width: 480px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 20px;
        right: 15px;
    }
    
    .whatsapp-float i {
        width: 28px;
        height: 28px;
        line-height: 28px;
    }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 255, 102, 0.5);
    animation: none;
}



.whatsapp-float:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.whatsapp-float i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    text-decoration: none !important;
    border-bottom: none !important;
}

.whatsapp-float:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Tooltip do botão flutuante */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background: #075e54;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Animação de pulso para o botão do WhatsApp */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Efeito de pulso contínuo removido */

/* Estilos do Rodapé */
footer .container {
    text-align: center;
}

footer .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

footer .social-links p {
    margin-bottom: 8px;
}

footer .social-links a {
    font-size: 1.5em;
}

footer .footer-info {
    margin-bottom: 15px;
}

footer .footer-copyright {
    margin-bottom: 20px;
}

/* Botão do Desenvolvedor */
.dev-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.dev-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
}

.dev-badge span {
    font-size: 0.8em;
    color: #ffffff;
}

.dev-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #4a90e2;
    color: white !important;
    padding: 4px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.75em;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.2;
}

.dev-contact-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dev-contact-btn i {
    font-size: 0.9em;
}

/* Estilos removidos do botão Voltar ao Topo */

/* Responsividade */
@media (max-width: 992px) {
    main {
        padding-top: 70px; /* Altura menor da navbar em telas médias */
    }
    
    #hero {
        padding: 80px 0 50px;    min-height: calc(100vh - 70px);
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    
    header {
        padding: 10px 0;
    }
    
    .whatsapp-tooltip {
        display: none; /* Esconde o tooltip em dispositivos móveis */
    }
    
    /* Estudo removidos do botão Voltar ao Topo */
}

/* Estilo para o link do WhatsApp */
.whatsapp-float {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.whatsapp-float i {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

/* Melhorias no tooltip */
.whatsapp-tooltip {
    background: #075e54;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}