:root {
    /* Cores do Cartão Cantinho do Pelo */
    --green-primary: #BEE3CB;
    --green-light: #DFF2E5;
    --green-dark: #8DBA9C;
    
    --pink-primary: #F7A9C4;
    --pink-light: #FBD0DF;
    --pink-dark: #D47A98;
    
    --text-main: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    --bg-off: #F9FBFD;
    
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --gradient-main: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    --gradient-pink: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-light) 100%);
    --orange-primary: #F57C00;

    
    --pink-primary: #D87093;
    --pink-light: #FADADD;
    --pink-bg: #FFF5F7;
    --pink-button: #F7A9C4;
    --green-premium: #8DBA9C;
    --green-border: #03ff57;
    --text-dark: #2D3436;
    --text-grey: #636E72;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-off); color: var(--text-main); overflow-x: hidden; }
h1, h2, h3, h4, .logo { font-family: 'Fredoka', sans-serif; }

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

/* --- Header Glassmorphism --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.hero-text > a {
    text-decoration: none;
}

/* Texto do endereço */
.hero-text > a > h2 {
    color: var(--pink-primary);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover apenas nesse endereço */
.hero-text > a:hover > h2 {
    color: var(--green-primary);
    transform: translateX(4px);
}

/* Link do endereço apenas na HERO */
.hero-text > a {
    text-decoration: none;
    display: inline-block;
    margin: 18px 0 28px; /* respiro acima e abaixo */
}

/* Texto do endereço */
.hero-text > a > h2 {
    color: var(--green-dark);
    font-size: 1.25rem;          /* maior e mais legível */
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover / toque */
.hero-text > a:hover > h2 {
    color: var(--pink-primary);
    transform: translateX(6px);
}

/* Ajuste fino para mobile */
@media (max-width: 768px) {
    .hero-text > a {
        margin: 16px 0 24px;
    }

    .hero-text > a > h2 {
        font-size: 1.05rem;
        text-align: center;
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
}
.logo i { color: var(--pink-primary); transform: rotate(15deg); margin-left: 5px; }
.highlight { color: var(--green-primary); }

.desktop-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.desktop-nav a { text-decoration: none; color: var(--text-main); font-weight: 500; transition: 0.3s; }
.desktop-nav a:hover { color: var(--green-primary); }

.btn-nav {
    padding: 10px 25px;
    background: var(--gradient-pink);
    color: white !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(247, 169, 196, 0.3);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(247, 169, 196, 0.5); }

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: linear-gradient(to bottom left, rgba(190, 227, 203, 0.15), rgba(247, 169, 196, 0.1));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: morph 15s infinite ease-in-out;
}

.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { max-width: 600px; }

.badge {
    display: inline-block;
    background: rgba(190, 227, 203, 0.2);
    color: var(--green-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: var(--text-main); }
.typewriter { color: var(--pink-primary); border-bottom: 3px solid var(--green-primary); }

p { color: var(--text-light); font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; }

.hero-btns { display: flex; gap: 20px; margin-bottom: 40px; }
.btn-primary {
    padding: 15px 35px;
    background: var(--gradient-main);
    color: var(--green-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(190, 227, 203, 0.3);
    transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(190, 227, 203, 0.4); }

.btn-secondary {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--green-primary);
    color: var(--green-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-secondary:hover { background: var(--green-primary); color: white; }

.stats { display: flex; gap: 40px; }
.stat-item h3 { font-size: 2rem; color: var(--text-main); }
.stat-item p { font-size: 0.9rem; color: var(--text-light); }

/* Imagem Hero */
.image-wrapper { position: relative; z-index: 1; }
.image-wrapper img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 20px 20px 0 rgba(190, 227, 203, 0.2);
}
.card-float {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.card-float i { color: var(--pink-primary); }
.card-float-1 { top: 40px; left: -40px; animation: float 6s ease-in-out infinite; }
.card-float-2 { bottom: 60px; right: -20px; animation: float 5s ease-in-out infinite reverse; }

/* --- Features --- */
.features { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.text-gradient { 
    background: linear-gradient(to right, var(--green-dark), var(--pink-dark)); 
    background-clip: text;
    -webkit-background-clip: text; 
    color: transparent;
    -webkit-text-fill-color: transparent; 
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.4s;
    border: 1px solid transparent;
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--green-light); }

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.icon-green { background: rgba(190, 227, 203, 0.2); color: var(--green-dark); }
.icon-pink { background: rgba(247, 169, 196, 0.15); color: var(--pink-primary); }

/* --- Seção Geral --- */
#servicos {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Fredoka', sans-serif;
}

/* O container principal volta ao normal para alinhar os textos de introdução */
.servicos-container {
    max-width: 900px; /* Mantemos 900px para o card de preços respirar */
    margin: 0 auto;
}

/* --- Imagem do Cachorro no Banho (Corrigido para não explodir) --- */
.img-servico-principal {
    width: 100%;
    max-width: 500px; /* Trava a largura da foto independente do container */
    height: 390px; /* Trava a altura para não empurrar o site pra baixo */
    object-fit: cover; /* Preenche a caixa sem amassar o cachorro */
    object-position: center 20%; /* Foca no rosto do cachorro */
    display: block;
    margin: 0 auto 30px auto; /* Centraliza a foto perfeitamente */
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Textos Iniciais ("Banho Relaxante") --- */
.texto-intro {
    max-width: 600px; /* Trava o texto para não esticar demais na tela */
    margin: 0 auto; /* Centraliza o bloco de texto de introdução */
    text-align: center; /* Centraliza as letras do título e parágrafo */
}

.texto-intro h3 {
    font-size: 1.6rem;
    color: var(--text-dark, #5A3E36);
    margin-bottom: 10px;
    font-weight: 700;
}

.texto-intro p {
    color: var(--text-grey, #7b625a);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* --- CARD DO CATÁLOGO DE PREÇOS --- */
.catalogo-card {
    background: linear-gradient(160deg, #e4f0e6 0%, #f6e1e5 100%);
    padding: 40px;
    border-radius: 30px;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin: 50px auto;
    color: #5A3E36;
    max-width: 900px; /* O card aproveita toda a largura disponível */
}

.catalogo-card h2 {
    text-align: center;
    color: #5A3E36;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.catalogo-card .subtitulo {
    text-align: center;
    color: #7b625a;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* --- Cabeçalhos das Categorias (Estilo Botão Rosa) --- */
.categoria-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 25px;
}

.categoria-header strong {
    display: inline-block;
    background-color: #d6718d; /* Rosa da fita */
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 40px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #b3566f; /* Efeito 3D */
}

.categoria-header small {
    display: block;
    color: #5A3E36;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 500;
    margin-top: 15px;
    line-height: 1.4;
    padding: 0 15px; 
}

/* --- LISTA DE PREÇOS --- */
.lista-precos {
    list-style: none;
    padding: 20px;
    margin: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}

.servico-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    border-bottom: 2px dashed #d6718d;
    color: #5A3E36;
    font-size: 1.1rem;
    font-weight: 600;
    gap: 20px;
}

.servico-item:last-child {
    border-bottom: none;
}

.servico-item span {
    flex: 1;
    line-height: 1.4;
}

.servico-item strong {
    color: #5A3E36;
    white-space: nowrap;
    text-align: right;
    font-size: 1.15rem;
}

/* Box Verde Premium / Aviso */
.box-premium-destaque {
    margin: 25px 0;
    padding: 15px;
    border: 2px solid #a3c2b1;
    border-radius: 10px;
    color: #4a6b57;
    text-align: center;
    font-weight: 600;
    background-color: #f0f7f3;
}

/* Aviso de Hora Marcada */
.aviso-footer {
    margin-top: 30px;
    padding: 15px;
    background-color: #d6718d;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Botão Agendar */
.btn-agendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s;
}

.btn-agendar:hover {
    transform: translateY(-3px);
}
/* --- Ajuste Especial para Telas Pequenas (Celulares) --- */
@media (max-width: 600px) {
    .catalogo-card {
        padding: 20px 15px; /* Reduz o padding geral pra dar mais espaço pro texto */
    }
    
    .lista-precos {
        padding: 15px 10px; /* Reduz o padding interno do bloco branco */
    }

    .servico-item {
        flex-direction: column; /* Empilha texto e preço */
        align-items: flex-start; /* Alinha tudo à esquerda */
        gap: 8px; /* Espaço entre o texto marrom e o preço rosa */
        padding: 18px 0; /* Dá mais espaço de respiro entre um item e outro */
    }
    
    /* Mágica da Responsividade aqui no 'span' (texto do peso) */
    .servico-item span {
        width: 100%; /* Força a ocupar toda a largura */
        display: block; /* Garante comportamento de bloco */
        font-size: 1.05rem; /* Ajuste sutil no tamanho da fonte */
        line-height: 1.5; /* Melhora a leitura se quebrar linha */
    }

    /* Como consertar a quebra do "(Pelo Curto / Longo)" */
    /* Vamos forçar um tamanho mínimo para que ele não quebre no meio da barra */
    .servico-item strong {
        align-self: flex-start; 
        color: #d6718d; /* Destaca o preço em rosa no celular */
        font-size: 1.2rem; /* Aumenta um pouco o preço pra dar destaque */
        margin-top: 2px;
        background: #fdf2f5; /* Um fundinho rosinha pro preço ficar parecendo etiqueta */
        padding: 5px 10px;
        border-radius: 8px;
        border: 1px solid #f6e1e5;
    }

    .categoria-header strong {
        font-size: 1.05rem;
        padding: 10px 25px;
        white-space: normal; /* Permite que o título "BANHO E TOSA" quebre linha se precisar */
        line-height: 1.3;
    }
}






/* ================================================= */
/* ESTILOS COMPARTILHADOS (Títulos das novas seções) */
/* ================================================= */
.container-secao {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.header-secao {
    text-align: center;
    margin-bottom: 40px;
}

.header-secao h2 {
    color: #d6718d; /* Rosa principal */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.header-secao p {
    color: #7b625a; /* Marrom acinzentado */
    font-size: 1.1rem;
}



/* ================================================= */
/* SEÇÃO GALERIA (Carrossel Swiper)                  */
/* ================================================= */
.secao-galeria {
    background-color: #fdf2f5; /* Fundo rosinha bem claro */
    overflow: hidden; /* Evita que o carrossel crie barra de rolagem lateral */
}

/* O antigo grid agora é o container do carrossel */
.grid-galeria {
    width: 100%;
    margin-bottom: 50px;
    padding-bottom: 40px; /* Espaço para as bolinhas da paginação não ficarem em cima das fotos */
}

/* Cada item/card da galeria */
.item-galeria {
    border-radius: 20px;
    overflow: hidden; /* Faz a foto e o texto respeitarem a borda arredondada */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    background-color: #fff; /* Fundo branco atrás da imagem e texto */
    height: auto; /* O Swiper ajusta a altura automaticamente */
}

/* Efeito de pular ao passar o mouse */
.item-galeria:hover {
    transform: translateY(-5px); 
}

/* Força a imagem a ser quadrada e preencher o card */
.item-galeria img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Força fotos quadradas perfeitas */
    object-fit: cover; /* Cobre o quadrado sem distorcer o cachorro */
    display: block;
}

/* Área de texto onde fica o nome do cachorro */
.nome-cachorro {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #d6718d; /* Rosa escuro para combinar com o botão */
    font-size: 1rem;
    border-top: 1px solid #fdf2f5;
}

/* Personalização das setas de navegação do Swiper */
.grid-galeria .swiper-button-prev,
.grid-galeria .swiper-button-next {
    color: #d6718d; /* Muda a cor da seta para o rosa do seu site */
    background: rgba(255, 255, 255, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.grid-galeria .swiper-button-prev:after,
.grid-galeria .swiper-button-next:after {
    font-size: 20px; /* Reduz o tamanho do ícone da seta dentro da bolinha */
    font-weight: bold;
}

/* Personalização das bolinhas (paginação) do Swiper */
.grid-galeria .swiper-pagination-bullet-active {
    background-color: #d6718d; /* Bolinha ativa na cor rosa do site */
}

.btn-container {
    text-align: center;
}

.btn-secundario {
    display: inline-block;
    background-color: #fff;
    color: #d6718d;
    border: 2px solid #d6718d;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-secundario:hover {
    background-color: #d6718d;
    color: #fff;
}



/* ================================================= */
/* SEÇÃO DEPOIMENTOS (Cards)                         */
/* ================================================= */
.secao-depoimentos {
    background: linear-gradient(160deg, #e4f0e6 0%, #fff 100%); /* Fundo verdinho caindo pro branco */
}

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

.card-depoimento {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #e4f0e6;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.estrelas {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.texto-depoimento {
    color: #5A3E36;
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.autor-depoimento {
    border-top: 1px solid #fdf2f5;
    padding-top: 15px;
}

.autor-depoimento strong {
    display: block;
    color: #d6718d;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.autor-depoimento span {
    color: #7b625a;
    font-size: 0.85rem;
}




/* --- Footer --- */
footer { background: #1e1e1e; color: white; padding: 30px 0 20px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.socials { display: flex; gap: 15px; }
.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}
.social-btn:hover { background: var(--green-primary); transform: rotate(360deg); }
.copy { text-align: center; padding-top: 20px; font-size: 0.9rem; color: #888; }
.copy a { text-decoration: none; color: var(--orange-primary); }

/* --- Animations Keyframes --- */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
@keyframes morph { 0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(190, 227, 203, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(190, 227, 203, 0); } 100% { box-shadow: 0 0 0 0 rgba(190, 227, 203, 0); } }

/* --- JS Interaction Classes --- */
.hidden-element { opacity: 0; transition: all 1s ease; }
.from-left { transform: translateX(-50px); }
.from-right { transform: translateX(50px); }
.fade-up { transform: translateY(50px); }
.zoom-in { transform: scale(0.9); }


.show-element { opacity: 1; transform: translate(0) scale(1); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* --- ATUALIZAÇÃO: MENU MOBILE PREMIUM --- */
.mobile-toggle { display: none; cursor: pointer; z-index: 1001; }
.bar { width: 25px; height: 3px; background-color: var(--text-main); margin: 5px 0; transition: 0.4s; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(252, 185, 185, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 35px; transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); z-index: 999; }
.mobile-menu.active { right: 0; }
.mobile-menu a { font-size: 1.8rem; text-decoration: none; color: var(--text-main); font-family: 'Fredoka', sans-serif; font-weight: 500; transition: 0.3s; position: relative; opacity: 0; }
.mobile-menu a::after { content: ''; position: absolute; width: 0; height: 3px; bottom: -8px; left: 50%; background: var(--pink-primary); transition: 0.3s; border-radius: 10px; transform: translateX(-50%); }
.mobile-menu a:active { color: var(--pink-dark); }
.mobile-menu a:active::after { width: 80%; }
.mobile-menu a:last-child { background: var(--gradient-main); padding: 12px 40px; border-radius: 50px; color: var(--green-dark); box-shadow: var(--shadow); }
.mobile-menu.active a { animation: fadeInLinks 0.5s ease forwards; }
.mobile-menu.active a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { animation-delay: 0.4s; }
@keyframes fadeInLinks { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


/* Quando o menu está aberto, transforma as barrinhas em X */

/* 1. Gira a primeira barra */
#mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

/* 2. Some com a barra do meio */
#mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

/* 3. Gira a terceira barra */
#mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* IMPORTANTE: Adicione isso na classe .bar que você já tem 
   para o movimento não ser seco (opcional, se já não tiver) */
.bar {
    transition: all 0.3s ease;
}

/* Fundo escuro do Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* A caixa branca do Modal */
.cta-box {
    background-color: #ffffff; /* Fundo branco para os textos aparecerem */
    width: 90%;
    max-width: 380px;
    padding: 30px;
    border-radius: 25px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Ajuste dos inputs para não ficarem colados */
.input-group {
    position: relative;
    margin-bottom: 25px; /* Espaço para o texto não encavalar */
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    font-size: 16px; /* Evita zoom automático no iPhone */
}

/* Estilo do botão */
.btn-glow {
    background-color: #FFB6C1;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}


@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    h1 { font-size: 2.5rem; }
    .hero-btns, .stats { justify-content: center; }
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    
    /* --- CORREÇÃO AQUI --- */
    .card-float { 
        display: flex; /* Faz aparecer de volta */
        padding: 8px 15px;
        font-size: 0.8rem; /* Diminui um pouco o tamanho para caber melhor */
    }
    
    .card-float-1 { 
        top: 20px; 
        left: 0px; /* Ajustado para não sair da tela lateralmente */
    }
    
    .card-float-2 { 
        bottom: 30px; 
        right: 0px; /* Ajustado para não sair da tela lateralmente */
    }
    /* --------------------- */

    .services-wrapper { flex-direction: column; align-items: center; }
    .service-card.featured { transform: scale(1); border: none; }

 



   
}