/*
 Theme Name:   Talentia V2
 Template:     generatepress
 Text Domain:  talentia-v2
 */
 
 
 .btn-icon {
     width: 16px !important;
     height: 16px !important;
 }
 
/* Header base */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #322a8b; /* primary */
  border-bottom: 1px solid rgba(193,231,251,0.2); /* primary/20 */
}
.header-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}

/* Branding */
.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #ffffff; /* primary-foreground */
  text-decoration: none;
  display: flex;
  align-items: center;
}
.custom-logo-link img {
  max-height: 40px;
  width: auto;
}

/* Menu */
.header-menu-wrap {
  flex: 1;
  text-align: end;
  padding-right: 24px;
}
.header-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 2rem;
}
.header-menu a {
  color: rgba(255,255,255,0.8); /* primary-foreground/80 */
  text-decoration: none;
  transition: color .2s;
}
.header-menu a:hover {
  color: #ffffff; /* primary-foreground */
}

a {
    height: 44px !important;
    width: fit-content;
}

/* Botón Contactar */
.header-contact .btn-contact {
  background-color: #f86b59; /* secondary */
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color .2s;
}
.header-contact .btn-contact:hover {
  background-color: rgba(248,107,89,0.9);
}

/* Responsive: hide menu on mobile */
@media (max-width: 767px) {
  .header-menu-wrap {
    display: none;
  }
}


/* — Hero V2 — */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  background-color: #322a8b;
}

/* Overlay gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,139,0.2) 0%,
    transparent 50%,
    rgba(248,107,89,0.1) 100%
  );
  pointer-events: none;
}

/* Floating circles */
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50%     { transform: scale(1.1); opacity: 1; }
}
.hero-float {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 4s infinite ease-in-out;
}
.hero-float-1 {
  top: 5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(to right, rgba(248,107,89,0.2), rgba(193,231,251,0.2));
}
.hero-float-2 {
  bottom: 8rem;
  right: 4rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to right, rgba(193,231,251,0.2), rgba(244,226,225,0.2));
  animation-delay: 2s;
}

/* Inner container */
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .hero-inner,.header-inner { max-width: 1350px; padding: 0px; }
}

/* Grid two columns on lg */
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(2,1fr); gap: 3rem; }
}

.grid-container {
    width: 100% !important;
    max-width: 100% !important;
}

/* Text block */
.hero-text {
  color: #fff;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-text { text-align: left; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: .875rem;
  font-weight: 500;
}
.hero-badge-icon {
  width: 1rem;
  height: 1rem;
  color: #facc15; /* yellow-300 */
}

.hero-title {
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
  font-size: 2rem;
}
@media (min-width: 640px) {
  .hero-title { font-size: 2.5rem; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
}
@media (min-width: 1280px) {
  .hero-title { font-size: 4.75rem; }
}
.hero-title .highlight {
  display: block;
  background: linear-gradient(to right, #f86b59, #c1e7fb);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: #e0f2fe; /* blue-100 */
  max-width: 30rem;
  margin: 0 auto 2rem;
  line-height: 2rem;
}
@media (min-width: 1024px) {
  .hero-subtitle { margin: 0 0 2rem 0; }
  .hero-subtitle { font-size: 1.5rem; }
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-buttons a {
    padding:16px 32px;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 9999px;
  transition: transform .3s, background-color .3s;
  padding: .75rem 1.5rem;
}
.btn-primary {
  background-color: #f86b59;
  color: #fff;
}
.btn-primary:hover {
  background-color: #f85f47;
  transform: scale(1.05);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  transform: scale(1.05);
}

/* Media image */
.hero-media {
  display: none;
}
@media (min-width: 1280px) {
  .hero-media { display: block; }
}
.hero-image {
  width: 100%;
  max-width: 40rem;
  height: auto;
  object-fit: contain;
}