* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f7f9fc;
}

a { text-decoration: none; }

/* --- HEADER Y NAVEGACIÓN --- */
header {
  height: 90px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo img {
  height: 80px;
  width: auto;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-menu > li > a {
  display: inline-block;
  padding: 8px 14px;
  color: #1a202c;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-menu > li > a:hover {
  background-color: #d4a017;
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-destacado {
  background-color: #071a34 !important;
  color: #ffffff !important;
}

.nav-destacado:hover {
  background-color: #d4a017 !important;
}

/* --- MENÚ DESPLEGABLE (DROPDOWN) --- */
.nav-menu .dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li a {
  display: block !important;
  background: transparent !important;
  color: #071a34 !important;
  box-shadow: none !important;
  padding: 10px 16px !important;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  border-radius: 0 !important;
  transform: none !important;
  text-align: left;
}

.dropdown-menu li a:hover {
  background-color: #f4f6f9 !important;
  color: #d4a017 !important;
}

/* --- BOTONES DEL HEADER DERECHO (CTA) --- */
.header-cta {
  display: flex;
  gap: 10px;
}

.amarillo-btn, .verde-btn {
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  color: white;
  transition: transform 0.2s ease;
}

.amarillo-btn { background: #d4a017; }
.verde-btn { background: #25D366; }

.amarillo-btn:hover, .verde-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* --- BARRA DE URGENCIA (DECLARACIÓN DE RENTA) --- */
.barra-urgencia {
  margin-top: 90px;
  background: #d4a017;
  color: #071a34;
  padding: 12px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.barra-urgencia strong { font-weight: 700; }

.barra-urgencia a {
  color: #071a34;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

/* --- BOTONES GENERALES --- */
.botones {
  margin-top: 30px;
}

.amarillo, .verde {
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
  color: white;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.amarillo { background: #d4a017; }
.verde { background: #25D366; }

.amarillo:hover, .verde:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* --- HERO SECTION --- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8% 80px 8%;
  background: #071a34;
  color: white;
  gap: 40px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-text span {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4a017;
  font-weight: 600;
}

.hero-text h1 {
  font-size: 36px;
  line-height: 1.25;
  margin: 10px 0;
  max-width: 650px;
}

.hero-text strong {
  color: #d4a017;
}

.frase-compromiso {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #e2e8f0;
  max-width: 580px;
  border-left: 3px solid #d4a017;
  padding-left: 15px;
}

.firma-autor {
  display: block;
  font-style: normal;
  font-size: 15px;
  color: #ffffff;
  margin-top: 8px;
}

.firma-autor span {
  font-size: 13px;
  color: #d4a017;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-img {
  flex-shrink: 0;
}

.hero-img .img-circular {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 5px solid #d4a017;
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

/* --- SECCIONES Y TARJETAS --- */
section {
  padding: 80px 8%;
}

section h2 {
  text-align: center;
  font-size: 32px;
  color: #071a34;
  margin-bottom: 40px;
}

h2.alinear-izq {
  text-align: left;
}

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

.card {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card i {
  font-size: 40px;
  color: #d4a017;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  color: #071a34;
  margin-bottom: 12px;
}

.card p {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
}

.card-destacada {
  border: 2px solid #d4a017;
  position: relative;
}

.card .ver-mas {
  display: inline-block;
  margin-top: 10px;
  color: #d4a017;
  font-weight: 600;
  font-size: 14px;
}

/* --- DECLARACIÓN DE RENTA DESTACADA --- */
.renta-destacada {
  background: #071a34;
  color: white;
}

.renta-contenido {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow-renta {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4a017;
  font-weight: 700;
  margin-bottom: 16px;
}

.renta-destacada h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 20px;
}

.renta-intro {
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.renta-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  text-align: left;
  margin-bottom: 40px;
}

.renta-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
}

.renta-item i {
  font-size: 24px;
  color: #d4a017;
  margin-top: 3px;
}

.renta-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffffff;
}

.renta-item p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

.cta-renta {
  margin-right: 0;
}

/* --- CHECKLIST REQUISITOS + DIAGNÓSTICO GRATIS --- */
.renta-requisitos {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  text-align: left;
  color: #1a202c;
  margin-bottom: 40px;
}

.requisitos-header { text-align: center; margin-bottom: 25px; }

.badge-uvt {
  display: inline-block;
  background: #071a34;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.requisitos-header h3 {
  font-size: 22px;
  color: #071a34;
  margin-bottom: 8px;
}

.requisitos-header p {
  font-size: 14px;
  color: #4a5568;
  max-width: 500px;
  margin: 0 auto;
}

.lista-requisitos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin-bottom: 25px;
}

.lista-requisitos li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f7f9fc;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #1a202c;
}

.lista-requisitos li i {
  color: #d4a017;
  margin-right: 8px;
}

.lista-requisitos li span {
  font-weight: 700;
  color: #071a34;
  margin-left: auto;
}

.diagnostico-gratis {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #f7f9fc;
  border-left: 4px solid #d4a017;
  border-radius: 10px;
  padding: 20px;
  flex-wrap: wrap;
}

.diagnostico-gratis i {
  font-size: 30px;
  color: #d4a017;
}

.diagnostico-gratis h4 {
  font-size: 16px;
  color: #071a34;
  margin-bottom: 4px;
}

.diagnostico-gratis p {
  font-size: 13px;
  color: #4a5568;
}

.diagnostico-gratis .amarillo {
  margin-left: auto;
  padding: 12px 20px;
  font-size: 14px;
}

/* --- NOSOTROS --- */
.nosotros {
  background: #ffffff;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.nosotros-foto img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.nosotros-texto p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.nosotros-texto strong {
  color: #071a34;
}

.nosotros-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat-card {
  background: #f7f9fc;
  border-left: 4px solid #d4a017;
  border-radius: 10px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
}

.stat-numero {
  font-size: 32px;
  font-weight: 700;
  color: #071a34;
}

.stat-label {
  font-size: 13px;
  color: #4a5568;
  margin-top: 4px;
}

/* --- RECURSOS Y MÁS (PLACEHOLDERS) --- */
.recurso-placeholder {
  background: #f7f9fc;
  text-align: center;
}

.recurso-alt {
  background: #ffffff;
}

.eyebrow-recurso {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #d4a017;
  font-weight: 700;
  margin-bottom: 10px;
}

.recurso-intro {
  color: #4a5568;
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.card-proximamente {
  opacity: 0.6;
  border: 2px dashed #cbd5e1;
  box-shadow: none;
}

.card-proximamente i {
  color: #94a3b8;
}

.card-proximamente h3 {
  color: #94a3b8;
  font-size: 15px;
}

/* --- CONTACTO Y FOOTER --- */
.contacto {
  background: #ffffff;
  text-align: center;
}

.contacto form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto input {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

.contacto button {
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #d4a017;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.contacto button:hover {
  background: #b8860b;
}

.redes-sociales {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.telefonos-contacto {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.telefonos-contacto a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f9fc;
  border: 1px solid #cbd5e1;
  padding: 10px 18px;
  border-radius: 30px;
  color: #071a34;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.telefonos-contacto a i {
  color: #25D366;
  font-size: 16px;
}

.telefonos-contacto a:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.redes-sociales a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #071a34;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.redes-sociales a:hover {
  background: #d4a017;
  transform: translateY(-3px);
}

footer {
  background: #071a34;
  color: white;
  text-align: center;
  padding: 30px;
  font-size: 14px;
}

.footer-contacto {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.footer-redes {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-redes a {
  color: #d4a017;
  font-size: 20px;
}

.footer-redes a:hover {
  color: #ffffff;
}

.contador-visitas {
  margin-top: 16px;
  opacity: 0.6;
}

.contador-visitas img {
  height: 18px;
}

/* --- ADAPTACIÓN MÓVIL --- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 40px;
  }
  .hero-text {
    align-items: center;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .frase-compromiso {
    text-align: left;
  }
  .header-cta {
    display: none;
  }
  .barra-urgencia {
    font-size: 13px;
    padding: 12px 5%;
  }
  .nosotros-grid {
    grid-template-columns: 1fr;
  }
  .nosotros-foto img {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}
