/*
Theme Name: Araceli Tech
Theme URI: https://aracelitisocco.com
Author: Araceli Tisocco
Author URI: https://aracelitisocco.com
Description: Tema tech personalizado.
Version: 1.0
*/

/* ===============================
   RESET BASE
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d1117;
  color: #e6edf3;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  padding-top: 140px;
}

/* Fondo cuadriculado tech */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

/* ===============================
   HEADER TECH
================================ */

.header-tech {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  z-index: 9999;
}

.header-inner {
  background: rgba(17,17,17,0.95);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 24px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: all 0.3s ease;
}

.header-tech.scrolled .header-inner {
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.logo a {
  font-family: 'Fira Code', monospace;
  font-size: 22px;
  color: #ffffff;
  text-decoration: none;
}

/* ============================= */
/* NAV TECH MENU (WP compatible) */
/* ============================= */

.nav-tech .menu-main {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-tech .menu-main > li {
  list-style: none;
}

.nav-tech .menu-main > li > a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-tech .menu-main > li > a:hover {
  color: #ff6a00;
  text-shadow: 0 0 12px rgba(255,106,0,0.6);
}

.cta-btn {
  padding: 10px 18px;
  border: 1px solid #ff6a00;
  border-radius: 8px;
  color: #ff6a00;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ff6a00;
  color: #000;
  box-shadow: 0 0 20px rgba(255,106,0,0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid #ff6a00;
  border-radius: 8px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #ffffff;
}

.mobile-menu {
  display: none;
  margin-top: 15px;
  background: #0f1722;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(255,106,0,0.3);
  box-shadow: 0 0 25px rgba(255,106,0,0.25);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #ffffff;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #ff6a00;
}

@media(max-width: 900px){

  .nav-tech,
  .cta-area {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-right {
    gap: 50px;
  }

}
/* ===============================
   HERO TECH
================================ */

.hero-tech {
  padding: 120px 0;
}

.hero-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT SIDE */

.hero-left {
  flex: 1;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.highlight {
  display: inline-block;
  background: #ff6a00;
  color: #000;
  padding: 6px 14px;
  border-radius: 8px;
  margin-left: 10px;
}

/* RIGHT SIDE */

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* TERMINAL */

.terminal {
  width: 100%;
  max-width: 520px;
  background: #0b1f2d;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(255,106,0,0.2);
  overflow: hidden;
}

.terminal-header {
  height: 40px;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-body {
  padding: 24px;
  font-family: 'Fira Code', monospace;
  font-size: 15px;
  line-height: 1.8;
}

/* COLORS */

.term-green { color: #00ff9d; }
.term-yellow { color: #ffd500; }
.term-orange { color: #ff6a00; }

/* BUTTON */

.term-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid #ff6a00;
  border-radius: 6px;
  color: #ff6a00;
  text-decoration: none;
  transition: 0.3s ease;
}

.term-btn:hover {
  background: #ff6a00;
  color: #000;
}

/* RESPONSIVE */

@media(max-width: 900px){

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 38px;
  }

}
/* ===============================
   CURSOR
================================ */

.cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #ff6a00;
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* ===============================
   HERO ANIMATION
================================ */

.hero-left,
.hero-right {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.hero-right {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   GLOW DINÁMICO
================================ */

.highlight {
  position: relative;
  background: #ff6a00;
  box-shadow: 0 0 20px rgba(255,106,0,0.5);
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 10px rgba(255,106,0,0.3);
  }
  to {
    box-shadow: 0 0 30px rgba(255,106,0,0.8);
  }
}
/* ============================= */
/* SYSTEM CAPABILITIES SECTION */
/* ============================= */

.capabilities-section {
  padding: 120px 40px;
}

.capabilities-container {
  max-width: 1200px;
  margin: 0 auto;
}

.capabilities-label {
  text-align: center;
  color: #00ff88;
  font-family: "Courier New", monospace;
  margin-bottom: 20px;
}

.capabilities-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 80px;
  color: #fff;
}

.typed-capabilities {
  color: #ff6a00;
}

.cursor-blink {
  color: #ff6a00;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* GRID */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.cap-card {
  background: #0b1d33;
  padding: 40px;
  border: 1px solid rgba(255,106,0,0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cap-card h3 {
  color: #ff6a00;
  font-family: "Courier New", monospace;
  margin-bottom: 15px;
}

.cap-card p {
  color: #cfd8dc;
}

.cap-card:hover {
  border: 1px solid #ff6a00;
  box-shadow: 0 0 25px rgba(255,106,0,0.4);
  transform: translateY(-5px);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-title {
    font-size: 2rem;
  }
}

/* ============================= */
/* WORKFLOW SECTION */
/* ============================= */

.workflow-section {
  padding: 140px 40px;
}

.workflow-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.workflow-label {
  color: #00ff88;
  font-family: "Courier New", monospace;
  margin-bottom: 20px;
}

.workflow-title {
  font-size: 2.8rem;
  margin-bottom: 60px;
}

/* TERMINAL WORKFLOW */

.workflow-terminal {
  background: #0b1f2d;
  border-radius: 18px;
  box-shadow: 0 0 60px rgba(255,106,0,0.25);
  overflow: hidden;
  text-align: left;
  position: relative;
  border: 1px solid rgba(255,106,0,0.3);
}

/* Glow naranja animado */

.workflow-terminal {
  animation: workflowGlow 3s infinite alternate;
}

@keyframes workflowGlow {
  from {
    box-shadow: 0 0 30px rgba(255,106,0,0.2);
  }
  to {
    box-shadow: 0 0 60px rgba(255,106,0,0.6);
  }
}

/* STATUS */

.terminal-status {
  margin-left: auto;
  margin-right: 20px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #ffd500;
}

.status-success {
  color: #00ff9d !important;
}
/* ============================= */
/* PROFILE SECTION */
/* ============================= */

.profile-section {
  padding: 140px 40px;
}

.profile-label {
  text-align: center;
  color: #00ff88;
  font-family: "Courier New", monospace;
  margin-bottom: 40px;
}

/* CONTENEDOR */

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */

.profile-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.profile-image {
  max-width: 320px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid #ff6a00;
  box-shadow: 0 0 35px rgba(255,106,0,0.45);
}

/* RIGHT */

.profile-right {
  flex: 2;
}

.profile-name {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.profile-role {
  font-family: "Courier New", monospace;
  margin-bottom: 30px;
  color: #e6edf3;
}

.role-highlight {
  color: #ff6a00;
}

/* TERMINAL TEXT */

.profile-terminal {
  font-family: "Courier New", monospace;
  color: #ffd500;
  line-height: 1.9;
  font-size: 16px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .profile-container {
    flex-direction: column;
    text-align: center;
  }

  .profile-right {
    text-align: center;
  }

}
/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-section {
  padding: 140px 40px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  gap: 60px;
}

/* LABEL */

.contact-label {
  color: #00ff88;
  font-family: "Courier New", monospace;
  margin-bottom: 30px;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

.contact-left {
  flex: 1;
}

.contact-form-wrapper {
  background: #0b1f2d;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,106,0,0.3);

  /* Glow igual a las otras cards */
  box-shadow: 0 0 50px rgba(255,106,0,0.35);
  transition: 0.3s ease;

  /* IMPORTANTE: permitir glow completo */
  overflow: visible;
}

/* ========================= */
/* FORMULARIO CF7 */
/* ========================= */

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #ffffff;
  color: #e6edf3;
  padding: 12px;
  border-radius: 8px;
  box-sizing: border-box;
}

.contact-form-wrapper textarea {
  resize: vertical;
}

/* BOTÓN ENVIAR */

.contact-form-wrapper input[type="submit"],
.contact-form-wrapper button,
.contact-form-wrapper .wpcf7-submit {
  background: transparent;
  border: 1px solid #ff6a00;
  color: #ff6a00;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper button:hover,
.contact-form-wrapper .wpcf7-submit:hover {
  background: #ff6a00;
  color: #000;
  box-shadow: 0 0 20px rgba(255,106,0,0.6);
}

/* ========================= */
/* CHECKBOX PRIVACIDAD */
/* ========================= */

.contact-form-wrapper .wpcf7-list-item {
  margin: 0;
}

.contact-form-wrapper .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff6a00;
  cursor: pointer;
}

/* ========================= */
/* RIGHT SIDE */
/* ========================= */

.contact-right {
  flex: 1;
  font-family: "Courier New", monospace;
}

.contact-info-box {
  background: #0b1f2d;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;

  box-shadow: 0 0 40px rgba(0,0,0,0.2);
}

.contact-info-box span {
  display: block;
  color: #ffd500;
  margin-bottom: 6px;
}

.contact-info-box a,
.contact-info-box div {
  color: #ff6a00;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

/* ========================= */
/* RESPONSE */
/* ========================= */

.contact-response {
  margin-top: 30px;
}

.response-title {
  color: #00ff88;
  margin-bottom: 10px;
}

#contact-typing {
  color: #ffd500;
  line-height: 1.8;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 900px) {

  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

}
/* ============================= */
/* FOOTER TECH */
/* ============================= */

.footer-tech {
  padding: 120px 40px 80px;
}

/* ===== TOP SECTION ===== */

.footer-top {
  text-align: center;
  margin-bottom: 60px;
}

.footer-label {
  color: #00ff88;
  font-family: "Courier New", monospace;
  margin-bottom: 20px;
}

/* Progress line */

.footer-progress-wrapper {
  width: 100%;
  max-width: 900px;
  height: 4px;
  margin: 0 auto 15px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.footer-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    #00ff88,
    #ffd500,
    #ff6a00
  );
  transition: width 0.3s ease;
}

.footer-progress-text {
  font-family: "Courier New", monospace;
  color: #ffd500;
}

/* ===== MAIN CARD ===== */

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #0b1f2d;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  box-shadow: 0 0 50px rgba(255,106,0,0.25);
}

/* Left */

.footer-name {
  font-family: "Courier New", monospace;
  font-size: 20px;
}

.footer-role {
  font-family: "Courier New", monospace;
  color: #ff6a00;
  margin-top: 6px;
}

/* Center */

.footer-center {
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
}

/* Button */

.footer-btn {
  border: 1px solid #ff6a00;
  padding: 12px 24px;
  border-radius: 8px;
  color: #ff6a00;
  text-decoration: none;
  font-family: "Courier New", monospace;
  transition: 0.3s ease;
}

.footer-btn:hover {
  background: #ff6a00;
  color: #000;
  box-shadow: 0 0 20px rgba(255,106,0,0.6);
}

/* Responsive */

@media (max-width: 900px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

}
/* ============================= */
/* BLOG SECTION TECH */
/* ============================= */

@media (max-width: 768px) {
  .single-post {
    padding: 120px 20px;
  }
}

.blog-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .blog-container {
    width: 88%;
  }
}

.blog-label {
  text-align: center;
  color: #00ff88;
  font-family: "Courier New", monospace;
  margin-bottom: 40px;
}

/* FILTRO */

.blog-filter {
  text-align: center;
  margin-bottom: 60px;
}

.filter-btn {
  border: 1px solid #ff6a00;
  padding: 6px 14px;
  border-radius: 6px;
  color: #ff6a00;
  text-decoration: none;
  font-family: "Courier New", monospace;
  margin: 5px;
  display: inline-block;
  transition: 0.3s ease;
}

.filter-btn:hover {
  background: #ff6a00;
  color: #000;
  box-shadow: 0 0 15px rgba(255,106,0,0.6);
}

/* GRID */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */

.blog-card {
  background: #0b1f2d;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid #ff6a00;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 0 50px rgba(255,106,0,0.5);
  transform: translateY(-5px);
}

/* IMAGE */

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* CATEGORY */

.blog-category {
  font-family: "Courier New", monospace;
  color: #ffd500;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-category a {
  color: #ffd500;
  text-decoration: none;
}

/* TITLE */

.blog-title {
  font-family: "Courier New", monospace;
  color: #ff6a00;
  font-size: 22px;
  margin-bottom: 15px;
}

/* META */

.blog-meta {
  font-family: "Courier New", monospace;
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 15px;
}

/* EXCERPT */

.blog-excerpt {
  font-family: "Courier New", monospace;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* TAGS (GRID) */

.blog-tags span {
  color: #ffd500;
  font-family: "Courier New", monospace;
  font-size: 12px;
  margin-right: 12px;
}

/* FIX LINKS GRID */

.blog-tags a,
.blog-tags a:visited {
  color: #ffd500;
  text-decoration: none;
}

.blog-tags a:hover {
  text-shadow: 0 0 8px rgba(255,213,0,0.8);
}

/* BUTTON */

.blog-btn {
  border: 1px solid #ff6a00;
  padding: 10px 20px;
  border-radius: 8px;
  color: #ff6a00;
  text-decoration: none;
  font-family: "Courier New", monospace;
  transition: 0.3s ease;
  align-self: flex-start;
}

.blog-btn:hover {
  background: #ff6a00;
  color: #000;
  box-shadow: 0 0 20px rgba(255,106,0,0.6);
}

/* ============================= */
/* SINGLE POST */
/* ============================= */

.single-post {
  padding: 140px 0;
}

.single-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.single-label {
  color: #00ff88;
  font-family: "Courier New", monospace;
  margin-bottom: 30px;
}

.single-title {
  font-family: "Courier New", monospace;
  color: #ff6a00;
  font-size: 32px;
  margin-bottom: 20px;
}

.single-meta {
  font-family: "Courier New", monospace;
  opacity: 0.6;
  margin-bottom: 30px;
}

.single-meta a {
  color: #ffd500;
  text-decoration: none;
}

.single-featured img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 30px;
  border: 1px solid #ff6a00;
}

.single-glass {
  background: rgba(15, 25, 35, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(200, 200, 200, 0.15);
  border-radius: 18px;
  padding: 50px;
  margin-top: 30px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.single-content {
  font-family: "Courier New", monospace;
  color: #ffffff;
  line-height: 1.8;
}

.single-tags span {
  background: transparent;
  border: none;
  padding: 0;
  margin-right: 14px;
  color: #ffd500;
  font-family: "Courier New", monospace;
  font-size: 13px;
  display: inline-block;
  margin-top: 20px;
}

.single-tags a,
.single-tags a:visited {
  color: #ffd500;
  text-decoration: none;
}

.single-tags a:hover {
  text-shadow: 0 0 8px rgba(255,213,0,0.8);
}

@media (max-width: 768px) {

  .single-post {
    padding: 120px 0;
  }

  .single-container {
    width: 92%;
  }

  .single-glass {
    padding: 30px;
  }

}
/* ============================= */
/* PAGE TEMPLATE TECH */
/* ============================= */

.page-tech {
  padding: 140px 40px;
}

.page-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-label {
  color: #00ff88;
  font-family: "Courier New", monospace;
  margin-bottom: 30px;
}

.page-title {
  font-family: "Courier New", monospace;
  color: #ff6a00;
  font-size: 32px;
  margin-bottom: 30px;
}

.page-content {
  font-family: "Courier New", monospace;
  color: #ffffff;
  line-height: 1.8;
}
/* ============================= */
/* NAV TECH MENU */
/* ============================= */

.nav-tech .menu-main {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-tech .menu-main > li {
  position: relative;
}

/* LINK PRINCIPAL */

.nav-tech .menu-main > li > a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  padding: 8px 0;
}

/* eliminar violeta */

.nav-tech .menu-main > li > a:visited {
  color: #ffffff;
}

/* HOVER */

.nav-tech .menu-main > li > a:hover {
  color: #ff6a00;
  text-shadow: 0 0 12px rgba(255,106,0,0.6);
}

/* ITEM ACTIVO */

.nav-tech .menu-main > li.current-menu-item > a,
.nav-tech .menu-main > li.current_page_item > a {
  color: #ffffff;
}

/* ============================= */
/* SUBMENU TECH */
/* ============================= */

.nav-tech .menu-main li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b1f2d;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 10px 0;
  min-width: 220px;
  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

/* mostrar submenu en hover (desktop) */

.nav-tech .menu-main > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* items submenu */

.nav-tech .menu-main li .sub-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-tech .menu-main li .sub-menu li:last-child {
  border-bottom: none;
}

/* links submenu */

.nav-tech .menu-main li .sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Courier New", monospace;
  transition: 0.3s ease;
}

/* hover submenu elegante */

.nav-tech .menu-main li .sub-menu li a:hover {
  background: transparent;
  color: #ff6a00;
  text-shadow: 0 0 12px rgba(255,106,0,0.6);
}
/* ============================= */
/* MOBILE MENU TECH */
/* ============================= */

@media (max-width: 900px) {

  .nav-tech {
    display: none;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #0b1f2d;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-menu li:last-child {
    border-bottom: none;
  }

  .mobile-menu a {
    display: block;
    padding: 12px 0;
    color: #ffffff;
    text-decoration: none;
    font-family: "Courier New", monospace;
    transition: 0.3s ease;
  }

  .mobile-menu a:hover {
    color: #ff6a00;
    text-shadow: 0 0 10px rgba(255,106,0,0.6);
  }

  /* SUBMENU MOBILE */

  .mobile-menu .sub-menu {
    display: none;
    padding-left: 15px;
  }

  .mobile-menu li.open > .sub-menu {
    display: block;
  }

}
/* ============================= */
/* CONTACT PAGE FIX */
/* ============================= */

.contact-page-label-wrapper {
  padding-top: 90px;
  padding-bottom: 10px;
  text-align: center;
}

.contact-page-label {
  color: #00ff88;
  font-family: "Courier New", monospace;
  font-size: 16px;
  opacity: 0;
  transform: translateY(15px);
  animation: contactFadeIn 0.8s ease forwards;
  text-shadow: 0 0 6px rgba(0, 255, 136, 0.3);
}

/* Animación suave */
@keyframes contactFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================= */
/* GLOBAL SCROLL */
/* ============================= */

html {
  scroll-behavior: smooth;
}
/* ============================= */
/* GLOBAL TECH LABEL ANIMATION */
/* ============================= */

/* Aplica a cualquier clase que termine en -label */
[class$="-label"] {
  opacity: 0;
  transform: translateY(15px);
  animation: techLabelFade 0.8s ease forwards;
  text-shadow: 0 0 6px rgba(0, 255, 136, 0.3);
}

@keyframes techLabelFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================================================== */
/* PAGE TECH - VERSION FINAL CORREGIDA */
/* ================================================== */

/* FIX RESPONSIVE GLOBAL */
html, body {
  overflow-x: hidden;
}

/* ============================= */
/* CONTENEDOR BASE */
/* ============================= */

.page-tech {
  width: 100%;
  max-width: 100%;
  padding: 120px 20px;
  box-sizing: border-box;
}

.page-tech .page-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-tech .page-content {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  position: relative;
  padding-left: 25px;
  width: 100%;
  box-sizing: border-box;
}

/* Línea lateral degradada */
.page-tech .page-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #ff6a00 0%,
    #ffcc00 50%,
    #00ff88 100%
  );
  opacity: 0.9;
}

/* ============================= */
/* TITULO CON CURSOR */
/* ============================= */

.page-tech .page-title {
  font-family: "Courier New", monospace;
  color: #ff6a00;
  font-size: 32px;
  margin-bottom: 30px;
}

.page-tech .page-title::after {
  content: "_";
  margin-left: 6px;
  color: #ff6a00;
  animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============================= */
/* IMAGENES */
/* ============================= */

.page-tech .page-content .wp-block-image {
  margin: 40px 0;
  max-width: 100%;
}

.page-tech .page-content img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border: 1px solid #ff6a00;
  box-shadow: 0 0 15px rgba(255,106,0,0.5);
  transition: all 0.3s ease;
}

.page-tech .page-content img:hover {
  box-shadow: 0 0 30px rgba(255,106,0,0.9);
  transform: scale(1.02);
}

/* ============================= */
/* ENLACES */
/* ============================= */

.page-tech .page-content a:not(.wp-block-button__link):not(.wp-element-button) {
  color: #00ff88;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-tech .page-content a:not(.wp-block-button__link):not(.wp-element-button):visited {
  color: #ff6a00;
}

.page-tech .page-content a:not(.wp-block-button__link):not(.wp-element-button):hover {
  color: #ffcc00;
  text-shadow: 0 0 8px rgba(255,204,0,0.9);
}

/* ============================= */
/* BOTONES (FIX DEFINITIVO) */
/* ============================= */

.page-tech .wp-block-button__link,
.page-tech .wp-element-button {
  display: inline-block;
  background: transparent;
  border: 1px solid #ff6a00;
  color: #ff6a00 !important;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: 'Courier New', monospace;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-tech .wp-block-button__link:hover,
.page-tech .wp-element-button:hover {
  background: #ff6a00;
  color: #000 !important;
  box-shadow: 0 0 20px rgba(255,106,0,0.8);
}

/* ============================= */
/* BLOCKQUOTE */
/* ============================= */

.page-tech .page-content blockquote {
  border-left: 3px solid #ff6a00;
  padding: 15px 20px;
  margin: 40px 0;
  font-style: italic;
  color: #ffcc00;
  background: rgba(255,106,0,0.05);
}

.page-tech .page-content blockquote p {
  margin: 0;
}

/* ================================================== */
/* RESPONSIVE */
/* ================================================== */

@media (max-width: 768px) {

  .page-tech {
    padding: 100px 15px;
  }

  .page-tech .page-content {
    font-size: 16px;
    padding-left: 18px;
  }

  .page-tech .page-content::before {
    width: 1px;
  }

  .page-tech .page-title {
    font-size: 26px;
  }

  .page-tech .page-content img:hover {
    transform: none;
  }

}
/* ============================= */
/* SCROLL PROGRESS CIRCLE */
/* ============================= */

.scroll-progress {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
}

.progress-bar {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

/* Círculo gris base */
.progress-bg {
  fill: transparent;
  stroke: rgba(255,255,255,0.15);
  stroke-width: 3;
}

/* Círculo naranja dinámico */
.progress-bar {
  fill: transparent;
  stroke: #ff6a00;
  stroke-width: 3;
  stroke-linecap: round;

  stroke-dasharray: 163; /* 2πr (26) */
  stroke-dashoffset: 163;

  transition: stroke-dashoffset 0.1s linear;
}

.progress-arrow {
  fill: none;
  stroke: #ffffff; /* cambiar a #ff6a00 si la querés naranja */
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

/* Glow sutil hover */
.scroll-progress:hover .progress-bar {
  filter: drop-shadow(0 0 6px #ff6a00);
}
/* ===================================== */
/* FOOTER MOBILE STRUCTURE FIX FINAL */
/* ===================================== */

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
  }

  .footer-btn {
    display: inline-block;
    white-space: nowrap;   /* nunca cortar texto */
    padding: 12px 20px;
  }

}
/* ===================================== */
/* SERVICIOS - ARCHIVE (Cards) */
/* ===================================== */

.servicio-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,106,0,0.4);
}

/* Estructura flex para alinear botón */
.cap-card {
  display: flex;
  flex-direction: column;
}

/* Separación texto */
.cap-card p {
  margin-bottom: 25px;
}

/* Botón card */
.cap-card .blog-btn {
  margin-top: 25px;
}



/* ===================================== */
/* SINGLE SERVICIO (Vista completa) */
/* ===================================== */

body.single-servicio .service-glass {
  display: flex;
  flex-direction: column;
}

/* Separación del contenido largo */
body.single-servicio .single-content {
  margin-bottom: 60px;
}

/* Estilo botón consultar */
body.single-servicio .service-btn {
  align-self: flex-end;

  border: 1px solid #ff6a00;
  padding: 10px 22px;
  border-radius: 8px;

  color: #ff6a00;
  text-decoration: none;
  font-family: "Courier New", monospace;

  background: transparent;
  transition: all 0.3s ease;
}

body.single-servicio .service-btn:hover {
  background: #ff6a00;
  color: #000;
  box-shadow: 0 0 25px rgba(255,106,0,0.7);
}

/* Más espacio en mobile */
@media (max-width: 768px) {
  body.single-servicio .single-content {
    margin-bottom: 80px;
  }
}



/* ===================================== */
/* EFECTO TIPEO SERVICIOS */
/* ===================================== */

.typed-servicios {
  color: #ff6a00;
}
/* ============================= */
/* CUSTOM CURSOR */
/* ============================= */

/* Círculo exterior */
.custom-cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 2px solid #ff6a00;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
  z-index: 9999;
}

/* Puntito interior */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #ff6a00;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* Desactivar en mobile */
@media (max-width: 768px) {
  .custom-cursor,
  .cursor-dot {
    display: none;
  }
}