/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    width: 100px; /* Define a largura desejada */
    height: auto;  /* Mantém a proporção original da imagem */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3436;
}

.logo span {
    color: #0984e3;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #636e72;
    font-weight: 500;
}

.btn-nav {
    background: #00b894;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #CC1C24;
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #fff;
    color: #CC1C24;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Planos */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 2rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #dfe6e9;
    transition: transform 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
}

.card.popular {
    border: 2px solid #CC1C24;
    box-shadow: 0 10px 30px rgba(9, 132, 227, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #CC1C24;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
    color: #2d3436;
}

.price span {
    font-size: 1rem;
    color: #b2bec3;
}

.card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.card ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #CC1C24;
    font-weight: bold;
}

.btn-card {
    display: block;
    padding: 12px;
    border: 2px solid #CC1C24;
    color: #CC1C24;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-card.featured {
    background: #CC1C24;
    color: #fff;
}

footer {
    background: #CC1C24;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}