/*
 * Folha de estilos para o site da JR Motos Aluguel Fidelidade.
 * As cores e espaçamentos foram escolhidos para refletir a identidade visual
 * apresentada nas artes fornecidas pelo cliente. O layout utiliza
 * propriedades modernas como flexbox e grid para garantir responsividade.
 */

:root {
    --primary-color: #e26a15;      /* tom de laranja inspirado nos anúncios */
    --secondary-color: #f2a35e;    /* laranja claro para destaques */
    --whatsapp-color: #25d366;     /* cor oficial do WhatsApp */
    --dark-color: #1f1f1f;
    --text-color: #333;
    --background-color: #fff;
    --light-grey: #f7f7f7;
    --max-width: 1200px;
}

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

body {
    font-family: "Arial", sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 60px;
    width: auto;
}

.nav-menu a {
    color: #fff;
    margin-right: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem; /* tamanho de fonte aumentado para melhor legibilidade */
    transition: opacity 0.3s ease;
}

.nav-menu a:last-child {
    margin-right: 0;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

/* Seção de destaque */
.hero {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4rem 0 5rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Seção sobre */
.sobre {
    padding: 3rem 0;
    background-color: var(--light-grey);
}

.sobre h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sobre p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Seção planos */
.planos {
    padding: 3rem 0;
}

.planos h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

.plano-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.plano-card h3 {
    font-size: 1.4rem;
    margin: 1rem;
    color: var(--primary-color);
}

.plano-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
    margin: 0 1rem;
}

.plano-card p {
    margin: 0.5rem 1rem;
    font-size: 0.95rem;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin: 1rem;
    text-align: center;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

/* Seção de contato */
.contato {
    padding: 3rem 0;
    background-color: var(--light-grey);
}

.contato h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contato p {
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Rodapé */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}
nav a {
    font-size: 18px; /* aumenta a fonte */
    font-weight: bold; /* deixa mais destacado */
}
