/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
background: #f8fafc;
font-family: Inter, Arial, sans-serif;
color: #0f172a;
overflow-x: hidden;
}

/* NAVBAR */

.navbar {
max-width: 1300px;
margin: auto;
padding: 35px 40px;

display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
gap: 18px;
}

.logo-icon {
width: 55px;
height: 55px;
border-radius: 18px;

background: #2563eb;
color: white;

display: flex;
justify-content: center;
align-items: center;

font-size: 25px;
}

.logo h2 {
font-size: 35px;
}

.logo span {
color: #64748b;
}

.navbar ul {
display: flex;
gap: 50px;
list-style: none;
}

.navbar li {
color: #475569;
cursor: pointer;
}

.active {
color: #2563eb;
font-weight: 600;
}

/* HERO */

.hero {
max-width: 1000px;
margin: 80px auto;
text-align: center;
padding: 0 20px;
}

.hero h1 {
font-size: 72px;
line-height: 1.15;
font-weight: 800;
}

.hero span {
color: #2563eb;
}

.hero p {
margin-top: 35px;
font-size: 26px;
line-height: 1.7;
color: #64748b;
}

/* BUSCADOR */

.search-box {
margin-top: 55px;

display: flex;
justify-content: center;
gap: 20px;
}

.input-box {
width: 750px;
background: white;

border-radius: 22px;
padding: 22px 28px;

display: flex;
align-items: center;
gap: 20px;

box-shadow:
0 10px 35px rgba(15, 23, 42, 0.08);
}

.input-box i {
font-size: 24px;
color: #64748b;
}

.input-box input {
width: 100%;
border: none;
outline: none;
font-size: 22px;
}

.search-box button {
width: 180px;
border: none;
border-radius: 22px;

background: #2563eb;
color: white;

font-size: 22px;
cursor: pointer;

box-shadow:
0 10px 30px rgba(37, 99, 235, 0.3);
}

.search-box button:hover {
background: #1d4ed8;
}

.verified {
margin-top: 35px;
color: #16a34a;
font-size: 20px;
}

/* CATEGORÍAS */

.categories {
max-width: 1400px;
margin: auto;
padding: 0 20px;
}

.categories h2 {
text-align: center;
font-size: 42px;
margin-bottom: 45px;
}

.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
}

.card {
background: white;
border-radius: 28px;
padding: 40px 30px;
text-align: center;

box-shadow:
0 15px 45px rgba(15, 23, 42, 0.06);

transition: .3s;
}

.card:hover {
transform: translateY(-8px);
}

.icon {
font-size: 45px;
margin-bottom: 25px;
}

.blue { color: #2563eb; }
.green { color: #16a34a; }
.purple { color: #7c3aed; }
.orange { color: #f59e0b; }
.red { color: #ef4444; }

.card h3 {
font-size: 30px;
}

.card p {
margin-top: 15px;
line-height: 1.6;
color: #64748b;
}

/* PASOS */

.steps {
max-width: 1300px;
margin: 90px auto;
padding: 50px;
background: #f1f5f9;
border-radius: 35px;
}

.steps h2 {
text-align: center;
margin-bottom: 45px;
font-size: 42px;
}

.step-container {
display: flex;
justify-content: space-around;
gap: 30px;
}

.step {
display: flex;
align-items: center;
gap: 20px;
font-size: 22px;
}

.step span {
width: 50px;
height: 50px;
border-radius: 50%;

background: #2563eb;
color: white;

display: flex;
justify-content: center;
align-items: center;
}

/* ALERTA */

.alert {
max-width: 1300px;
margin: auto;

background: #ecfdf5;
border-radius: 30px;

padding: 35px;

display: flex;
align-items: center;
gap: 25px;

color: #166534;
}

.alert i {
font-size: 45px;
}

.alert p {
margin-top: 10px;
}

/* FOOTER */

footer {
text-align: center;
padding: 50px 20px;
color: #64748b;
}

/* RESPONSIVE */

@media (max-width: 768px) {

.navbar {
padding: 20px;
justify-content: center;
}

.navbar ul {
display: none;
}

.logo h2 {
font-size: 28px;
}

.logo span {
font-size: 14px;
}

.hero {
margin: 40px auto;
}

.hero h1 {
font-size: 42px;
}

.hero p {
font-size: 18px;
}

.search-box {
flex-direction: column;
gap: 15px;
}

.input-box {
width: 100%;
padding: 18px;
}

.input-box input {
font-size: 18px;
}

.search-box button {
width: 100%;
height: 60px;
font-size: 18px;
}

.categories h2,
.steps h2 {
font-size: 30px;
}

.card h3 {
font-size: 24px;
}

.steps {
padding: 30px 20px;
}

.step-container {
flex-direction: column;
align-items: flex-start;
}

.step {
font-size: 18px;
}

.alert {
flex-direction: column;
text-align: center;
padding: 30px 20px;
}

.alert i {
font-size: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;

  filter:
    drop-shadow(0 0 6px rgba(37, 99, 235, 0.35))
    drop-shadow(0 0 12px rgba(37, 99, 235, 0.20));

  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.08);
}

.logo-text h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
}

.logo-text span {
  font-size: 14px;
  color: #64748b;
}
}
