/* ========================================================
   VARIÁVEIS DE COR
   ======================================================== */
:root {
    --cor-vermelho: #eb0b03;
    --cor-vermelho-milano: #b40406;
    --cor-cinza-aco: #1c1e2b;
    --cor-apimenta: #845744;
    --cor-cerejeira: #611417;
    --cor-branco: #ffffff;
    --cor-cinza-claro: #f5f5f5;
    --cor-cinza-escuro: #333333;
}

/* ========================================================
   RESET E ESTILOS GLOBAIS
   ======================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--cor-cinza-escuro);
    background-color: var(--cor-branco);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================================
   HEADER E NAVBAR
   ======================================================== */
.header {
    background-color: var(--cor-cinza-aco);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cor-vermelho);
    white-space: nowrap;
    z-index: 1001;
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    color: var(--cor-branco);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
}

.nav-links a:hover {
    color: var(--cor-vermelho);
    background-color: rgba(235, 11, 3, 0.1);
    border-radius: 3px;
}

.btn-admin {
    background-color: var(--cor-vermelho);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.btn-admin:hover {
    background-color: var(--cor-vermelho-milano);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--cor-vermelho);
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================================
   BOTÕES
   ======================================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--cor-vermelho);
    color: var(--cor-branco);
}

.btn-primary:hover {
    background-color: var(--cor-vermelho-milano);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 11, 3, 0.3);
}

.btn-secondary {
    background-color: var(--cor-apimenta);
    color: var(--cor-branco);
}

.btn-secondary:hover {
    background-color: var(--cor-cerejeira);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--cor-branco);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero {
    height: 600px;
    background: linear-gradient(135deg, var(--cor-cinza-aco) 0%, var(--cor-cerejeira) 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(235,11,3,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Profile Image Container */
.hero-profile-container {
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 2;
    animation: fadeInScale 1s ease;
}

.hero-profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--cor-vermelho);
    box-shadow: 0 0 30px rgba(235, 11, 3, 0.5),
                0 0 60px rgba(235, 11, 3, 0.3),
                0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.hero-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Animated Rings */
.hero-profile-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--cor-vermelho);
    border-radius: 50%;
    opacity: 0.4;
}

.ring-1 {
    width: 220px;
    height: 220px;
    animation: pulse-ring 3s infinite ease-out;
}

.ring-2 {
    width: 250px;
    height: 250px;
    animation: pulse-ring 3s infinite ease-out 1s;
}

.ring-3 {
    width: 280px;
    height: 280px;
    animation: pulse-ring 3s infinite ease-out 2s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Profile Glow Effect */
.profile-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(235, 11, 3, 0.3) 0%, transparent 70%);
    animation: glow-pulse 2s infinite alternate;
    pointer-events: none;
    border-radius: 50%;
}

@keyframes glow-pulse {
    from {
        opacity: 0.5;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    color: var(--cor-vermelho);
    font-size: 1.5rem;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    text-shadow: 0 0 10px rgba(235, 11, 3, 0.8);
}

.particle-1 {
    top: 10%;
    left: 20%;
    animation: float-particle 4s infinite ease-in-out;
}

.particle-2 {
    top: 25%;
    right: 15%;
    animation: float-particle 5s infinite ease-in-out 1s;
}

.particle-3 {
    bottom: 30%;
    left: 10%;
    animation: float-particle 6s infinite ease-in-out 2s;
}

.particle-4 {
    bottom: 20%;
    right: 20%;
    animation: float-particle 4.5s infinite ease-in-out 0.5s;
}

.particle-5 {
    top: 50%;
    left: 5%;
    animation: float-particle 5.5s infinite ease-in-out 1.5s;
}

.particle-6 {
    top: 45%;
    right: 8%;
    animation: float-particle 6.5s infinite ease-in-out 2.5s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cor-branco);
    animation: fadeInUp 1s ease;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--cor-vermelho);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================================
   INFO PRINCIPAL
   ======================================================== */
.info-principal {
    padding: 4rem 0;
    background-color: var(--cor-cinza-claro);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: var(--cor-branco);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--cor-vermelho);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(235, 11, 3, 0.2);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--cor-vermelho);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--cor-cinza-aco);
}

.info-card p {
    color: #666;
}

/* ========================================================
   BENEFÍCIOS
   ======================================================== */
.beneficios {
    padding: 4rem 0;
    background-color: var(--cor-branco);
}

.beneficios h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cor-cinza-aco);
    position: relative;
    padding-bottom: 1rem;
}

.beneficios h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--cor-vermelho);
    border-radius: 2px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.beneficio-item {
    background: linear-gradient(135deg, var(--cor-cinza-claro) 0%, var(--cor-branco) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    border-color: var(--cor-vermelho);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(235, 11, 3, 0.15);
}

.beneficio-icon {
    width: 60px;
    height: 60px;
    background-color: var(--cor-vermelho);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--cor-branco);
}

.beneficio-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--cor-cinza-aco);
}

.beneficio-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ========================================================
   COMO FUNCIONA
   ======================================================== */
.como-funciona {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cor-cinza-aco) 0%, var(--cor-cerejeira) 100%);
    color: var(--cor-branco);
}

.como-funciona h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cor-vermelho);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--cor-vermelho);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step:hover {
    background-color: rgba(235, 11, 3, 0.2);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--cor-vermelho);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================================
   VALORES
   ======================================================== */
.valores {
    padding: 3rem 0;
    background-color: var(--cor-cinza-claro);
    text-align: center;
}

.valores h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--cor-cinza-aco);
}

.valores-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Grid de Cards de Valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.valor-card {
    background: linear-gradient(135deg, var(--cor-branco) 0%, var(--cor-cinza-claro) 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.valor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(235, 11, 3, 0.25);
    border-color: var(--cor-vermelho);
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--cor-vermelho) 0%, var(--cor-vermelho-milano) 100%);
}

.valor-card-header {
    margin-bottom: 1.5rem;
}

.valor-tipo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cor-cinza-aco);
    margin-bottom: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valor-preco {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cor-vermelho);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.valor-preco-simbolo {
    font-size: 1.5rem;
    font-weight: 600;
}

.valor-card-body {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.valor-descricao {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.valor-badge {
    display: inline-block;
    background-color: var(--cor-vermelho);
    color: var(--cor-branco);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* Loading State */
.valores-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--cor-cinza-aco);
}

.valores-loading i {
    font-size: 3rem;
    color: var(--cor-vermelho);
    margin-bottom: 1rem;
}

.valores-loading p {
    font-size: 1.1rem;
    color: #666;
}

/* Empty State */
.valores-vazio {
    background-color: var(--cor-branco);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto 3rem;
}

.valores-vazio i {
    font-size: 3rem;
    color: var(--cor-vermelho);
    margin-bottom: 1rem;
}

.valores-vazio p {
    font-size: 1.1rem;
    color: var(--cor-cinza-aco);
    margin-bottom: 0.5rem;
}

.valores-vazio-subtitle {
    font-size: 0.95rem;
    color: #666;
}

/* WhatsApp Container */
.valores-whatsapp-container {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(235, 11, 3, 0.2);
}

.valores-whatsapp-text {
    font-size: 1.1rem;
    color: var(--cor-cinza-aco);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Animação de entrada dos cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.valor-card:nth-child(1) { animation-delay: 0.1s; }
.valor-card:nth-child(2) { animation-delay: 0.2s; }
.valor-card:nth-child(3) { animation-delay: 0.3s; }
.valor-card:nth-child(4) { animation-delay: 0.4s; }
.valor-card:nth-child(5) { animation-delay: 0.5s; }
.valor-card:nth-child(6) { animation-delay: 0.6s; }

/* ========================================================
   AGENDAMENTO
   ======================================================== */
.agendar {
    padding: 4rem 0;
    background-color: var(--cor-branco);
}

.agendar h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cor-cinza-aco);
}

.agendamento-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--cor-cinza-claro);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.agendamento-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--cor-cinza-aco);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-vermelho);
    box-shadow: 0 0 5px rgba(235, 11, 3, 0.2);
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ========================================================
   LOCALIZAÇÃO
   ======================================================== */
.localizacao {
    padding: 4rem 0;
    background-color: var(--cor-cinza-claro);
}

.localizacao h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cor-cinza-aco);
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.localizacao-info h3 {
    font-size: 1.5rem;
    color: var(--cor-vermelho);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--cor-branco);
    border-radius: 5px;
    border-left: 4px solid var(--cor-vermelho);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--cor-vermelho);
    min-width: 30px;
}

.info-item p {
    margin: 0;
}

.info-item a {
    color: var(--cor-vermelho);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.localizacao-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
    background-color: var(--cor-cinza-aco);
    color: var(--cor-branco);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
    }

    .navbar .container {
        position: relative;
    }

    .logo {
        font-size: 1.2rem;
        gap: 5px;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 400px;
        flex-direction: column;
        gap: 0;
        padding: 0;
        background-color: var(--cor-cinza-aco);
        border: 2px solid var(--cor-vermelho);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        width: 100%;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links a:hover {
        background-color: rgba(235, 11, 3, 0.2);
    }

    .btn-admin {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        display: inline-block;
    }

    .hero {
        height: auto;
        min-height: 600px;
        padding: 2rem 0;
    }

    .hero-profile-container {
        width: 150px;
        height: 150px;
    }

    .hero-profile-image {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }

    .ring-1 {
        width: 170px;
        height: 170px;
    }

    .ring-2 {
        width: 195px;
        height: 195px;
    }

    .ring-3 {
        width: 220px;
        height: 220px;
    }

    .particle {
        font-size: 1.2rem;
    }

    .particle-5,
    .particle-6 {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .localizacao-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .valores-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .valor-card {
        padding: 1.5rem;
    }

    .valor-tipo {
        font-size: 1.2rem;
        min-height: 50px;
    }

    .valor-preco {
        font-size: 2rem;
    }

    .valor-descricao {
        font-size: 0.95rem;
        min-height: 70px;
    }

    .valores-whatsapp-text {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1rem;
        gap: 5px;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .logo span {
        display: none;
    }

    .nav-links {
        width: calc(100% - 20px);
        margin: 10px 10px 0 10px;
    }

    .nav-links a {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .btn-admin {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }

    .hamburger span {
        width: 20px;
        height: 2.5px;
    }

    .hero {
        min-height: 550px;
        gap: 1.5rem;
    }

    .hero-profile-container {
        width: 120px;
        height: 120px;
    }

    .hero-profile-image {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }

    .ring-1 {
        width: 135px;
        height: 135px;
    }

    .ring-2 {
        width: 155px;
        height: 155px;
    }

    .ring-3 {
        width: 175px;
        height: 175px;
    }

    .particle {
        font-size: 1rem;
    }

    .particle-3,
    .particle-4,
    .particle-5,
    .particle-6 {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .beneficios h2,
    .agendar h2,
    .localizacao h2,
    .como-funciona h2 {
        font-size: 1.5rem;
    }

    .agendamento-form-container {
        padding: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .valores h2 {
        font-size: 1.8rem;
    }

    .valores-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .valores-grid {
        padding: 0 5px;
    }

    .valor-card {
        padding: 1.25rem;
    }

    .valor-tipo {
        font-size: 1.1rem;
        min-height: 45px;
    }

    .valor-preco {
        font-size: 1.8rem;
    }

    .valor-preco-simbolo {
        font-size: 1.2rem;
    }

    .valor-descricao {
        font-size: 0.9rem;
        min-height: 60px;
    }

    .btn-whatsapp {
        font-size: 1rem;
        padding: 12px 20px;
    }
}
