/* ====================== RESET ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

/* ====================== HEADER ====================== */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: #E30613;
    text-decoration: none;
}

.logo span {
    color: #111111;
}

/* Menu */
.menu {
    display: flex;
    gap: 2.8rem;
    list-style: none;
}

.menu a {
    color: #222222;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #E30613;
}


/* ====================== RESPONSIVO ====================== */
@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }
    
    .menu {
        gap: 1.8rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 10px 24px;
        font-size: 1rem;
    }
}


body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

/* HEADER */
.header {
    background-color: white;
    padding: 15px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    text-decoration: none;
}

.logo strong {
    color: red;
}

.logo span {
    color: black;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: red;
}

/* CONTEÚDO */
main {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* TÍTULOS */
h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #111;
}

/* TEXTO */
p {
    margin-bottom: 15px;
    line-height: 1.6;
} 

li {
    margin-bottom: 8px;
}

/* IMAGEM */
img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin: 10px 0 20px 0;
}

input, select {
  width: 250px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

/* Efeito ao clicar */
input:focus, select:focus {
  border-color: #ff2b2b;
  box-shadow: 0 0 5px rgba(255, 43, 43, 0.5);
}

button {
  padding: 12px 20px;
  background-color: #ff2b2b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

/* Hover botão */
button:hover {
  background-color: #cc0000;
}

/* Resultado */
#resultado {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  margin: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}