```css id="v8m4pz"
/* =========================================================
   MINERVA CONSTRUYE — COMPLETE RESPONSIVE CSS
========================================================= */

:root {

  --mc-blue: #232D53;
  --mc-blue-dark: #18203d;

  --mc-yellow: #E1A100;
  --mc-yellow-soft: #f5d57b;

  --mc-light: #f5f7fb;
  --mc-text: #5b6475;

}

/* =========================================================
   GLOBAL
========================================================= */

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {

  font-family: 'Inter', sans-serif;

  background-color: var(--mc-light);

  color: #111827;

}

img {

  max-width: 100%;
  height: auto;

}

.container {

  max-width: 1240px;

}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.section-tag {

  color: var(--mc-yellow);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;

}

.section-title {

  color: var(--mc-blue);

  letter-spacing: -0.03em;

}

.text-body-custom {

  color: var(--mc-text);

}

/* =========================================================
   SPACING
========================================================= */

.section-spacing {

  padding-top: 7rem;
  padding-bottom: 7rem;

}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {

  backdrop-filter: blur(14px);

  background: rgba(24, 32, 61, 0.88);

  border-bottom: 1px solid rgba(255,255,255,0.08);

}

.navbar-brand {

  letter-spacing: 0.03em;

}

.nav-link {

  color: rgba(255,255,255,0.82) !important;

  font-weight: 500;

  transition: 0.25s ease;

}

.nav-link:hover {

  color: white !important;

}

/* =========================================================
   BUTTONS
========================================================= */

.btn-yellow {

  background-color: var(--mc-yellow);

  color: #111827;

  border: none;

  transition: all 0.3s ease;

}

.btn-yellow:hover {

  background-color: #f0b000;

  transform: translateY(-2px);

  color: #111827;

}

/* =========================================================
   HERO
========================================================= */

.hero {

  min-height: 100vh;

  padding-top: 120px;
  padding-bottom: 60px;

  background:
    linear-gradient(rgba(20,27,52,0.82), rgba(20,27,52,0.82)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop')
    center/cover no-repeat;

}

.hero h1 {

  line-height: 1.05;

  letter-spacing: -0.03em;

}

.hero p {

  color: rgba(255,255,255,0.82);

}

/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {

  display: inline-block;

  max-width: 100%;

  padding: 0.85rem 1.4rem;

  background-color: rgba(225,161,0,0.15);

  border: 1px solid rgba(225,161,0,0.35);

  border-radius: 999px;

  color: white;

  font-size: 0.95rem;

  font-weight: 500;

  line-height: 1.5;

  text-align: center;

  word-break: keep-all;

}

.hero-badge .separator {

  margin-inline: 0.5rem;

  opacity: 0.7;

}
	
/* =========================================
   LOGO CAROUSEL
========================================= */

.logo-carousel {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 60px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Infinite scroll animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {
  .logo-track {
    gap: 2.5rem;
  }

  .logo-track img {
    height: 45px;
  }
}

/* =========================================================
   CARDS
========================================================= */

.service-card,
.project-card,
.info-card {

  border: none;

  border-radius: 1.5rem;

  transition: all 0.3s ease;

}

.service-card:hover,
.project-card:hover,
.info-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 1rem 3rem rgba(0,0,0,0.08) !important;

}

.service-card .card-body,
.project-card .card-body {

  padding: 2.5rem;

}

.feature-icon {

  width: 74px;
  height: 74px;

  background-color: rgba(225,161,0,0.12);

  color: var(--mc-blue);

}

/* =========================================
   HANDYMAN FEATURE CARD (FIXED)
========================================= */

.handyman-card {
  background: linear-gradient(135deg, #232D53 0%, #18203d 100%);
  border: 2px solid var(--mc-yellow);
  transform: scale(1.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.handyman-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(225,161,0,0.18), transparent 60%);
  pointer-events: none;
}

.handyman-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.35) !important;
}

/* ICON */
.handyman-icon {
  width: 74px;
  height: 74px;
  background: rgba(225,161,0,0.2);
  color: var(--mc-yellow);
}

/* BADGE */
.handyman-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mc-blue);
  background: var(--mc-yellow);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

/* TEXT FIX (THIS WAS THE MAIN ISSUE) */
.handyman-title {
  color: #ffffff;
}

.handyman-text {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
	
/* =========================================================
   ABOUT CARDS
========================================================= */

.about-cards {

  margin-top: 1rem;

}

.about-icon {

  width: 72px;
  height: 72px;

  margin-inline: auto;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 1.25rem;

  background-color: rgba(225,161,0,0.12);

  font-size: 2rem;

}

.about-cards .info-card {

  transition: all 0.3s ease;

}

.about-cards .info-card:hover {

  transform: translateY(-6px);

}

/* =========================================================
   STATS
========================================================= */

.stats-card {

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

  backdrop-filter: blur(12px);

}

/* =========================================================
   HERO STATS
========================================================= */

.hero-stats h2 {

  line-height: 1;

  margin-bottom: 0.5rem;

}

.hero-stats p {

  color: rgba(255,255,255,0.78);

  font-size: 0.95rem;

}

/* =========================================================
   PROJECTS
========================================================= */

.project-image {

  height: 260px;

  object-fit: cover;

}

/* =========================================================
   CTA
========================================================= */

.bg-gradient-dark {

  background:
    linear-gradient(
      135deg,
      var(--mc-blue-dark) 0%,
      var(--mc-blue) 100%
    );

}

/* =========================================================
   FORM
========================================================= */

.form-control,
.form-select {

  border: 1px solid #d9dfeb;

  padding: 1rem 1.25rem;

}

.form-control:focus,
.form-select:focus {

  border-color: var(--mc-yellow);

  box-shadow: 0 0 0 0.2rem rgba(225,161,0,0.18);

}

/* =========================================================
   FOOTER
========================================================= */

.footer-modern {

  background:
    linear-gradient(
      135deg,
      var(--mc-blue-dark) 0%,
      var(--mc-blue) 100%
    );

}

.footer-text {

  color: rgba(255,255,255,0.72);

  line-height: 1.8;

  max-width: 340px;

}

.footer-title {

  color: white;

}

.footer-links li {

  margin-bottom: 1rem;

}

.footer-links a {

  color: rgba(255,255,255,0.72);

  text-decoration: none;

  transition: all 0.25s ease;

}

.footer-links a:hover {

  color: var(--mc-yellow);

  padding-left: 4px;

}

.footer-contact span {

  display: block;

  color: var(--mc-yellow);

  font-size: 0.9rem;

  margin-bottom: 0.2rem;

}

.footer-contact p {

  color: rgba(255,255,255,0.75);

}

.footer-divider {

  border-color: rgba(255,255,255,0.1);

}

.footer-copy {

  color: rgba(255,255,255,0.6);

  font-size: 0.95rem;

}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.social-icon {

  width: 52px;
  height: 52px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  background-color: rgba(255,255,255,0.08);

  color: white;

  font-size: 1.2rem;

  text-decoration: none;

  transition: all 0.3s ease;

}

.social-icon:hover {

  background-color: var(--mc-yellow);

  color: var(--mc-blue);

  transform: translateY(-4px);

}

/* =========================================================
   RESPONSIVE — 1200px
========================================================= */

@media (max-width: 1200px) {

  .display-2 {
    font-size: 4rem;
  }

  .display-3 {
    font-size: 3.3rem;
  }

  .display-4 {
    font-size: 2.8rem;
  }

}

/* =========================================================
   RESPONSIVE — 992px
========================================================= */

@media (max-width: 992px) {

  .hero {

    min-height: auto;

    padding-top: 140px;
    padding-bottom: 80px;

    text-align: center;

  }

  .hero .row {

    gap: 4rem;

  }

  .display-2 {
    font-size: 3.3rem;
  }

  .display-3 {
    font-size: 2.8rem;
  }

  .display-4 {
    font-size: 2.4rem;
  }

  .display-5 {
    font-size: 2rem;
  }

  .section-spacing {

    padding-top: 5rem;
    padding-bottom: 5rem;

  }

  .navbar-collapse {

    margin-top: 1rem;

    padding: 1.5rem;

    border-radius: 1rem;

    background-color: rgba(24, 32, 61, 0.98);

  }

  .navbar-nav {

    gap: 1rem !important;

  }

  .hero-buttons {

    flex-direction: column;

  }

  .hero .btn {

    width: 100%;

  }

  .stats-card {

    max-width: 650px;

    margin: 0 auto;

    padding: 3rem !important;

  }

  .hero-stats {

    justify-content: center;

  }

  .hero-stats .col-6 {

    padding: 1rem;

  }

  .hero-stats h2 {

    font-size: 3rem !important;

  }

  .hero-stats p {

    font-size: 1rem;

  }

  #nosotros .row,
  #contacto .row {

    text-align: center;

  }

  .about-cards {

    justify-content: center;

  }

  .footer-modern {

    text-align: center;

  }

  .footer-text {

    margin-left: auto;
    margin-right: auto;

  }

}

/* =========================================================
   RESPONSIVE — 768px
========================================================= */

@media (max-width: 768px) {

  .container {

    padding-left: 1.25rem;
    padding-right: 1.25rem;

  }

  .hero {

    padding-top: 130px;
    padding-bottom: 60px;

  }

  .display-2 {

    font-size: 2.7rem;

    line-height: 1.1;

  }

  .display-3 {
    font-size: 2.3rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.8rem;
  }

  .lead {

    font-size: 1.05rem;

  }

  .service-card .card-body,
  .project-card .card-body,
  .card-body.p-5 {

    padding: 2rem !important;

  }

  .feature-icon {

    width: 64px;
    height: 64px;

    font-size: 1.5rem !important;

  }

  .btn-lg {

    padding: 0.9rem 1.5rem !important;

    font-size: 1rem;

  }

  .form-control-lg,
  .form-select-lg {

    font-size: 1rem;

    padding: 0.85rem 1rem;

  }

  textarea.form-control {

    min-height: 140px;

  }

  .footer-modern .d-flex.gap-3 {

    justify-content: center;

  }

}

/* =========================================================
   RESPONSIVE — 576px
========================================================= */

@media (max-width: 576px) {

  .section-spacing {

    padding-top: 4rem;
    padding-bottom: 4rem;

  }

  .display-2 {

    font-size: 2.2rem;

  }

  .display-3 {

    font-size: 1.9rem;

  }

  .display-4 {

    font-size: 1.7rem;

  }

  .display-5 {

    font-size: 1.5rem;

  }

  h4 {

    font-size: 1.2rem;

  }

  .hero {

    padding-top: 120px;

  }

  .hero p,
  .lead,
  .text-body-custom {

    font-size: 1rem !important;

  }

  .service-card .card-body,
  .project-card .card-body,
  .stats-card,
  .card-body.p-5 {

    padding: 1.5rem !important;

  }

  .stats-card {

    width: 100%;

    max-width: 100%;

    border-radius: 1.5rem !important;

  }

  .hero-stats .col-6 {

    width: 50%;

    padding: 1.2rem 0.5rem;

  }

  .hero-stats h2 {

    font-size: 3.2rem !important;

    margin-bottom: 0.75rem;

  }

  .hero-stats p {

    font-size: 1rem;

    line-height: 1.4;

  }

  .footer-modern {

    padding-top: 4rem !important;

  }

  .footer-copy {

    text-align: center;

    font-size: 0.85rem;

  }

  .social-icon {

    width: 46px;
    height: 46px;

    font-size: 1rem;

  }

  .hero-badge {

    display: inline-flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 0.35rem;

    border-radius: 1rem;

    font-size: 0.82rem;

    padding: 0.8rem 1rem;

    width: 100%;
    max-width: 320px;

  }

  .hero-badge .separator {

    display: none;

  }

  .about-cards .info-card {

    padding: 2rem 1.5rem !important;

  }

  .about-icon {

    width: 64px;
    height: 64px;

    font-size: 1.7rem;

  }

}

/* =========================================================
   ULTRAWIDE
========================================================= */

@media (min-width: 1600px) {

  .container {

    max-width: 1400px;

  }

  .hero {

    min-height: 90vh;

  }

}