/* -- Variáveis CSS para Cores, Fontes e Espaçamento -- */
:root {
    /* Paleta de Cores */
    --black: #000000;
    --white: #ffffff;
    --light-bg: #f9f7ea;          /* Fundo principal (quase branco/bege) */
    --dark-text: #2e3538;         /* Texto principal e logo (cinza escuro) */
    --accent-yellow: #ffde14;     /* CTA principal (amarelo vibrante) */
    --accent-yellow-hover: #e6c800; /* CTA principal hover */
    --accent-pink: #ec607e;       /* Destaque 1 (rosa avermelhado) */
    --accent-pink-hover: #d65574; /* Destaque 1 hover */
    --accent-red-orange: #eb5e50; /* Destaque 2 (laranja avermelhado) */
    --accent-peach: #f5a376;      /* Logo icon e destaques suaves (laranja pêssego) */
    --accent-dark-green: #006b5d; /* Crescimento, equilíbrio (verde escuro) */
    --accent-dark-green-hover: #135048; /* Crescimento, equilíbrio (verde escuro) */
    --accent-dark-blue: #006c7d;  /* Estrutura, profissionalismo (azul petróleo) */
    --accent-light-blue: #0089bb; /* Liberdade, inspiração (azul médio/céu) */

    /* Fontes */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif; /* Alternativa para 'The Seasons' */
    /* NOTA: Se você tiver acesso à fonte 'The Seasons' como webfont (ex: Typekit, ou self-hosted),
             importe-a e use 'The Seasons', serif; para --font-secondary. */

    /* Espaçamento */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;

    /* Largura Máxima do Conteúdo */
    --max-content-width: 1200px;
}

/* -- Reset Básico e Estilos Globais -- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Rolagem suave para links âncora */
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; /* Suavização de fonte para WebKit */
    -moz-osx-font-smoothing: grayscale; /* Suavização de fonte para Firefox */
    overflow-x: hidden; /* Evita scroll horizontal indesejado */
}

a {
    color: var(--accent-pink);
    text-decoration: none;
}

a:hover {
    color: var(--accent-pink-hover);
    text-decoration: underline;
}


section + section {
    margin-top: 2.5rem;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.header img {
    width: 190px;
}

.header nav {
    display: flex;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 0.625rem;
    font-weight: 900;
}

.hero img {
    object-fit: cover;
    width: 100%;
    height: 70vh;
}

.hero > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo-description {
    width: 200px;
    height: auto;
}

.box-description {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
}

.box-description div > p {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 3.125rem;
    background-color: var(--accent-pink);
}

.services-content {
    width: 100vw;
    padding: 0 3.75rem;
}

.services h1 {
    max-width: 40em;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    align-items: center;
    font-family: var(--font-secondary);
    margin: 1.875rem 0 2rem 0;
}

.services > a {
    padding: 0 3.75rem;
    color: var(--white);
    background-color: var(--accent-dark-green);
    border-radius: 9999px;
    font-size: 2rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    text-decoration: none;
    margin: 2rem 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.services > a:hover {
    background-color: var(--accent-dark-green-hover);
}

.card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 1.25rem;
    align-items: start;
    align-content: center;
    max-width: 100%;
}

.card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    background-color: var(--white);
    justify-items: center;
    padding: 1.25rem;
}

.card img {
    width: 240px;
    height: 180px;
    object-fit: cover;
}

.card h2 {
    font-size: 1rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    text-transform: uppercase;
}

.card div p {
    font-size: 1rem;
    text-align: justify;
}

.card div p + p {
    margin-top: 0.875rem;
}

.plans {
    width: 100%;
    padding: 0 3.125rem;
}

.plans-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plans-content h1 {
    font-size: 2.8125rem;
    font-family: var(--font-secondary);
    margin-bottom: 3.125rem;
}

.business-plan {
    display: flex;
    justify-content: center;
}

.business-plan > a {
    width: auto;
    padding: 0 3.75rem;
    color: var(--white);
    background-color: var(--accent-dark-green);
    border-radius: 9999px;
    font-size: 2rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    text-decoration: none;
    margin: 2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.business-plan > a:hover {
    background-color: var(--accent-dark-green-hover);
}
.price-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 1.25rem;
    max-width: 90vw;
}

.price-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    justify-items: center;
    border: 1px solid var(--accent-dark-green);
}

.price-card h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5.625rem;
    text-transform: uppercase;
    background-color: var(--accent-dark-green);
    color: var(--white);
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 1.625rem;
}

.price-card-price {
    text-transform: uppercase;
    text-align: center;
}

.price-card-price div {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: -15px;
}

.price-card-price div > span {
    display: inline-block;
    font-weight: bold;
}

.price-card-price div > span:first-child {
    font-size: 1rem;
}

.price-card-price div > span:nth-child(2) {
    font-size: 2.375rem;
    margin-top: -10px;
}

.price-card-period {
    font-size: 0.75rem;
}

.price-card-description {
    max-width: 80%;
}

.price-card-description > ul {
    list-style: none;
}

.price-card-description > ul li {
    display: flex;
    gap: 0.51rem;
}

.price-card-description > ul li::before {
    content: '\2714';
}

.price-card footer {
    margin: 2rem 0;
}

.price-card footer a {
    color: var(--white);
    background-color: var(--accent-pink);
    font-size: 0.625rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 800;
    border-radius: 9999px;
    padding: 0.5rem 1.125rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.price-card footer a:hover {
    background-color: var(--accent-pink-hover);
}

body footer {
    margin: 5em 0 2em;
    font-size: 1em;
}

body footer div {
    display: flex;
    gap: 3em;
    /* align-items: center; */
    justify-content: center;
}
