
/* =========================
   DESIGN SYSTEM
========================= */
:root {
  --primary: #ff6600;
  --dark: #111;
  --light: #fff;

  --space-xs: 10px;
  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 60px;
  --space-xl: 80px;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* =========================
   TYPOGRAPHY
========================= */
h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

.section-title {
  margin-bottom: var(--space-md);
}

/* =========================
   LAYOUT GLOBAL
========================= */
section {
  padding: var(--space-lg) 0;
}




/* =========================
   CARDS
========================= */
.card {
  margin-bottom: var(--space-md);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* =========================
   FOOTER
========================= */
footer {
  background: #222;
  color: #fff;
  padding: var(--space-lg) 0;
  margin-top: var(--space-lg);
}





.feature-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* columnas */
.feature-item {
  padding: 40px 20px;
  border-right: 1px solid #eee;
}

.feature-item:last-child {
  border-right: none;
}

/* iconos */
.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ff6600;
}

/* hover profesional */
.feature-item:hover {
  background: #f8f9fa;
  transition: 0.3s;
}

/* =========================
   FEATURE SECTION PRO
========================= */


.feature-section {
  background: #fff;
}

/* columna base */
.feature-item {
  position: relative;
  padding: 50px 25px;
  transition: all 0.3s ease;
  border-right: 1px solid #eee;
}

.feature-item:last-child {
  border-right: none;
}

/* contenedor interno */
.feature-box {
  text-align: center;
  max-width: 280px;
  margin: auto;
}

/* icono */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,102,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  color: #ff6600;

  transition: all 0.3s ease;
}

/* texto */
.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-box p {
  font-size: 0.95rem;
  color: #666;
}

/* =========================
   HOVER EFECTO PRO
========================= */
.feature-item:hover {
  background: #f9f9f9;
}

.feature-item:hover .icon-wrap {
  background: #ff6600;
  color: #fff;
  transform: scale(1.1);
}

/* efecto elevación */
.feature-item:hover .feature-box {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* línea animada inferior */
.feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #ff6600;
  transition: 0.3s;
  transform: translateX(-50%);
}

.feature-item:hover::after {
  width: 60%;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .feature-item {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .feature-item {
    padding: 40px 20px;
  }
}




























/* =========================
   SLIDER
========================= */

.slider{
    position: relative;
    width: 100%;
    margin-top: 110px;
    margin-bottom: 0;
    overflow: hidden;
}

.slide{
    display: none;
    width: 100%;
}

.slide.active{
    display: block;
}

.slide img{
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.slide::before{
    display:none;
}

.content{
    display:none;
}

/* botones */
.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
}

.prev{ left:10px; }
.next{ right:10px; }

.dots{
    position:absolute;
    bottom:10px;
    width:100%;
    text-align:center;
}


@media (max-width:768px){

    .top-header{
        display:none !important;
    }

    .slider{
        margin-top:65px !important;
    }

    .slide img{
        width:100% !important;
        height:auto !important;
        object-fit:unset !important;
        max-width:100% !important;
    }

    .nav-btn{
        display:none;
    }

    .content{
        display:none;
    }
}


