/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f1f33;
    font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
}

.page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 0;
}

.app {
    width: 390px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

/* TOPO */
.header {
    text-align: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    opacity: 0.95;
}

/* CONTADOR */
.countdown-section {
    margin-top: 30px;
}

.countdown-wrapper {
    background-color: #1b304a;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 15px 3px #087ff7;
}

.count-card {
    text-align: center;
    min-width: 70px;
}

.count-number {
    display: block;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.count-label {
    font-size: 12px;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

/* SERVIÇOS */
.services {
    margin-top: 32px;
}

.services-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-circle {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    border: 1px solid #087ff7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 5px rgba(8, 127, 247, 0.6);
    background: transparent;
}

.service-icon {
    font-size: 30px;
    color: #087ff7;
}

.service-label {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
}

/* ===== AJUSTES INDIVIDUAIS ===== */
.pet-sitter-item {
    margin-left: 12px;
}

.servicos-gerais-item {
    margin-left: 20px;
}

/* TEXTO EXPLICATIVO */
.info {
    margin-top: 28px;
    text-align: center;
}

.info-text {
    font-size: 16px;
    line-height: 1.45;
}

/* ---------- CTA INSTAGRAM — ANIMAÇÃO PREMIUM ---------- */

.cta-section {
    margin-top: 28px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    width: 100%;
    padding: 18px 24px;
    border-radius: 30px;
    background-color: #087ff7;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;

    /* Animação suave */
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    transform: translateZ(0);
    will-change: transform;
}

/* Passou o mouse → cresce */
.cta-button:hover {
    transform: scale(1.06);
    background-color: #0a8fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Clicou → cresce ainda mais */
.cta-button:active {
    transform: scale(1.10);
    background-color: #0c9dff;
}

/* Ícones Material */
.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 40;
}
