* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #c62828; /* rojo */
  padding: 15px 20px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Logo */
.logo img {
  height: 45px;
}

/* Menú */
.nav-menu {
  position: absolute;
  right: 20px;
  display: flex;
  gap: 25px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}


/* BOTÓN */
.menu-toggle {
  font-size: 30px;
  display: none;
  background: none;
  color: #fff;
  border: none;
  left: -15%;
  cursor: pointer;
  z-index: 2000;
  position: relative;
}

/* MENÚ APPLE FULLSCREEN */
.apple-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: #ff2a30;
  backdrop-filter: blur(25px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1500;
}

/* Estado activo */
.apple-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* Links estilo Apple */
.apple-menu a {
  text-decoration: none;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Animación escalonada */
.apple-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.apple-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.apple-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.apple-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.apple-menu.active a:nth-child(4) { transition-delay: 0.4s; }

.apple-menu a:hover {
  opacity: 0.6;
}


/* RESPONSIVE */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: #b71c1c;
    text-align: center;

    /* ESTADO INICIAL CERRADO */
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

}


.about-section {
  padding: 50px 20px;
  background: #ff2a30;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.about-section2 {
  padding: -50px 20px;
  background: #ff2a30;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.about-container {
  max-width: 800px;
}

.about-container h2 {
  font-size: 38px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-container p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Botones */
.about-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Botón principal */
.btn-primary {
  background: #ffffff;
  color: #c62828;
}

.btn-primary:hover {
  background: #ffe5e5;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Botón secundario */
.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #c62828;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Animación suave al cargar */
.about-container {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-container h2 {
    font-size: 28px;
  }

  .about-container p {
    font-size: 16px;
  }
}

.fondo {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fondo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fondoservicios {
  margin: -2% 0% 0% 0%;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fondoservicios img {
  max-width: 100%;
  max-height: 100%;
  object-fit: center;
  display: block;
}

.fondoequipo {
  overflow: hidden;
}

.fondoequipo img {
  max-width: 100%;
  height: 100%;
  object-fit: center;
  display: block;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: pulse 1.8s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-text {
  white-space: nowrap;
}

/* Animación */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Móvil */
@media (max-width: 768px) {
  .whatsapp-text {
    display: none;
  }
}

    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #ff2a30; /* rojo */
  padding: 15px 20px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Logo */
.logo img {
  height: 70px;
  margin: 10% 0% 0% 0%;
}

/* Menú */
.nav-menu {
  position: absolute;
  right: 20px;
  display: flex;
  gap: 25px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 8px 2px;
  font-size: 15px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-menu a:hover {
     background-color: rgba(255,255,255,0.25);
}

/* ===== TEAM ULTRA PRO ===== */

.team-ultra {
  background: radial-gradient(circle at top, #ff2a30);
  padding: 10px 20px;
  color: white;
}

/* HEADER */
.team-head {
  text-align: center;
  margin-bottom: 120px;
}

.team-head h2 {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.team-head p {
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  font-size: 1.1rem;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1100px;
  margin: auto;
  gap: 50px;
}

/* CARD */
.team-card {
  position: relative;
  padding: 50px 25px;
  border-radius: 30px;

  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(0,0,0,0.3));
  backdrop-filter: blur(25px);

  border: 1px solid rgba(255,255,255,0.1);

  transition: all 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}

/* GLOW SUAVE */
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,42,48,0.4), transparent 70%);
  opacity: 0;
  transition: 0.5s;
}

.team-card:hover::before {
  opacity: 1;
}

/* IMAGEN */
.team-image {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.team-image img {
  height: 400px;
  transition: 0.6s ease;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7));
}

/* TEXTO */
.team-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.team-info span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* HOVER PRO */
.team-card:hover {
  transform: translateY(-15px) scale(1.04);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.team-card:hover img {
  transform: scale(1.12) translateY(-5px);
}

/* EFECTO FOCO */
.team-grid:hover .team-card {
  opacity: 0.5;
}

.team-grid .team-card:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media(max-width:768px){
  .team-head h2 {
    font-size: 2.5rem;
  }
}

.modal-content {
  background: linear-gradient(180deg, #111, #000);
  padding: 50px 30px;
  border-radius: 25px;
  text-align: center;
  max-width: 420px;
  color: white;

  box-shadow: 0 40px 100px rgba(0,0,0,0.8);

  animation: modalIn 0.4s ease;
}

.modal-content img {
  width: 140px;
  margin-bottom: 20px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.modal-content h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.modal-content span {
  display: block;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.6);
}

.modal-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

@keyframes modalIn {
  from {
    transform: scale(0.9) translateY(40px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* ===== APPLE PRO TEAM ===== */

.team-apple-pro {
  background: #ff2a30;
  padding: 10px 20px;
  text-align: center;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* HEADER */
.team-header h2 {
  font-size: 2.2rem;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

/* ===== CEO ===== */

.ceo-main {
  margin-bottom: 80px;
}

/* FOTO */
.ceo-photo {
  width: 500px;
  height: 500px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}

.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXTO */
.ceo-main h3 {
  margin-top: 25px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.ceo-main span {
  font-size: 0.9rem;
  opacity: 0.65;
}

/* ===== DIVISOR ===== */

.team-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 60px auto;
}

.contact-lux-red{
  padding: 20px 20px;
  color:#fff;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;

  background:
    radial-gradient(circle at top, #ff2a30);
}

/* LAYOUT */
.contact-shell{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT */
.contact-left .kicker{
  font-size:12px;
  letter-spacing:4px;
  opacity:.6;
}

.contact-left h2{
  font-size:3.8rem;
  line-height:1.05;
  margin:15px 0;
  letter-spacing:-2px;
}

.contact-left h2 span{
  color:#fff;
  text-shadow:0 0 25px rgba(255,42,48,0.6);
}

.contact-left p{
  opacity:.7;
  max-width:450px;
  line-height:1.6;
}

/* META */
.meta{
  display:flex;
  gap:40px;
  margin-top:40px;
}

.meta span{
  font-size:11px;
  letter-spacing:2px;
  opacity:.5;
}

.meta p{
  font-size:.95rem;
  opacity:.85;
}

/* CARD */
.card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:24px;
  padding:35px;
  backdrop-filter:blur(18px);
  transition:.4s ease;
}

.card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.1);
}

/* ROW */
.row{
  display:flex;
  gap:14px;
  margin-bottom:22px;
  align-items:center;
}

/* ICONOS */
.icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(0,0,0,0.25);
  font-size:18px;
  color:#fff;
  transition:.3s;
}

.row:hover .icon{
  background:#fff;
  color:#ff2a30;
  transform:scale(1.1);
}

/* TEXT */
.row h3{
  font-size:1rem;
  margin-bottom:3px;
}

.row a,
.row p{
  font-size:.95rem;
  opacity:.75;
  color:#fff;
  text-decoration:none;
}

/* SOCIAL */
.social{
  display:flex;
  gap:12px;
  margin:25px 0;
}

.social a{
  width:40px;
  height:40px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.25);
  color:#fff;
  transition:.3s;
}

.social a:hover{
  background:#fff;
  color:#ff2a30;
  transform:scale(1.1);
}

/* CTA */
.cta{
  display:block;
  text-align:center;
  padding:14px;
  border-radius:50px;
  background:#fff;
  color:#ff2a30;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.cta:hover{
  transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-shell{
    grid-template-columns:1fr;
  }

  .contact-left h2{
    font-size:2.6rem;
  }
}

a{
  text-decoration: none;
  color: inherit;
}

/* ===== EQUIPO ===== */

/* SECTION */
.team{
  padding:20px 20px;
  text-align:center;
}

/* TITULO */
.top-text{
  display:flex;
  color: white;
  justify-content:space-between;
  font-size:.9rem;
  opacity:.8;
  margin-bottom:20px;
}

h1{
  font-size:3.5rem;
  color: white;
  margin-bottom:40px;
}

/* GRID */
.container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:50px;
}

/* CARD */
.card{
  width:330px;
  text-align:center;
  position:relative;
  transition:.4s;
  opacity:0;
  transform:translateY(40px) scale(.95);
}

.card.show{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* IMAGE */
.card img{
  width:200px;
  height:200px;
  border-radius:50%;
  object-fit:cover;
  border:5px solid white;
  margin-bottom:-60px;
  z-index:2;
  position:relative;
}

/* BOX */
.box{
  background:rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding:70px 20px 30px;
  border-radius:25px;
  transition:.3s;
}

/* TEXT */
h3{
  margin-top:10px;
  color: white;
}

p{
  font-size:.9rem;
  color:#eee;
  margin-top:5px;
}

/* HOVER */
.card:hover{
  transform:translateY(-10px) scale(1.05);
}

/* CEO DESTACADO */
.ceo{
  transform:scale(1.2);
}

.ceo .box{
  background:rgba(255, 255, 255, 0.15);
  box-shadow:0 0 40px rgba(255, 255, 255, 0.2);
}

.ceo img{
    border:5px solid white;
}

.ceo::before{
  content:"CEO";
  position:absolute;
  top:-10px;
  left:50%;
  transform:translateX(-50%);
  background:#ffffff;
  color:#ff0000;
  font-size:1rem;
  padding:5px 12px;
  border-radius:20px;
  font-weight:bold;
}

/* FOOTER TEXT */
.desc{
  margin-top:60px;
  max-width:600px;
  margin-inline:auto;
  font-size:.95rem;
  opacity:.9;
}

/* RESPONSIVE */
@media(max-width:768px){
  .ceo{
    transform:scale(1.05);
  }
}

.card{
  opacity: 0;
  transform: translateY(60px) scale(.95);
  transition: all .8s cubic-bezier(.22,1,.36,1);
}

.card.show{
  opacity: 1;
  transform: translateY(0) scale(1);
}


.banner {
  width: 100%;
  overflow: hidden;      /* Evita desbordes */
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* La imagen llena el espacio */
  object-position: center; /* Siempre centrada */
}


@media (max-width: 768px) {
  .banner img {
    height: 80vh;          /* Altura del banner */
    max-height: 40vh;    /* En móvil, se reduce menos */
  }
}

@media (max-width: 480px) {
  .banner img {
    max-height: 40vh;    /* En pantallas muy pequeñas */
  }
}

/* ===== PAQUETES REDES SOCIALES ===== */

.social-packages{
  width:100%;
  padding:80px 20px;
  background:#ff2a30;
  color:#fff;
  text-align:center;
}

.social-packages h2{
  font-size:clamp(2rem, 5vw, 3rem);
  margin-bottom:12px;
  font-weight:800;
}

.social-packages > p{
  max-width:600px;
  margin:0 auto 45px;
  font-size:clamp(1rem, 2vw, 1.15rem);
  line-height:1.5;
  color:rgba(255,255,255,.78);
}

.packages-grid{
  max-width:1150px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
  align-items:stretch;
}

.package-card{
  min-height:100%;
  padding:34px 28px;
  border-radius:26px;
  text-align:left;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 18px 45px rgba(0,0,0,.20);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  display:flex;
  flex-direction:column;
  transition:.35s ease;
}

.package-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(0,0,0,.30);
}

.package-card h3{
  font-size:clamp(1.4rem, 3vw, 1.8rem);
  line-height:1.2;
  margin-bottom:18px;
  color:#fff;
}

.package-card .price{
  font-size:clamp(2.2rem, 5vw, 3rem);
  font-weight:800;
  color:#ffd700;
  margin-bottom:26px;
}

.package-card ul{
  list-style:none;
  padding:0;
  margin:0 0 30px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.package-card li{
  display:grid;
  grid-template-columns:32px 1fr;
  align-items:flex-start;
  gap:12px;
  font-size:1rem;
  line-height:1.45;
  color:rgba(255,255,255,.92);
}

.package-card li i{
  font-size:1.25rem;
  color:#fff;
  -webkit-text-fill-color:initial;
  background:none;
  margin-top:2px;
}

.btn-cta{
  margin-top:auto;
  width:max-content;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  background:#ffd700;
  color:#222;
  padding:14px 24px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  transition:.3s ease;
}

.btn-cta:hover{
  background:#fff;
  color:#ff2a30;
  transform:translateY(-3px);
}

/* Tablet */
@media(max-width:1024px){
  .packages-grid{
    grid-template-columns:repeat(2, 1fr);
    max-width:760px;
  }

  .package-card.elite{
    grid-column:1 / -1;
    max-width:370px;
    margin:0 auto;
    width:100%;
  }
}

/* Celular */
@media(max-width:650px){
  .social-packages{
    padding:60px 18px;
  }

  .packages-grid{
    grid-template-columns:1fr;
    max-width:360px;
    gap:22px;
  }

  .package-card,
  .package-card.elite{
    grid-column:auto;
    max-width:none;
    width:100%;
    padding:28px 24px;
    border-radius:24px;
  }

  .package-card h3{
    font-size:1.45rem;
  }

  .package-card .price{
    font-size:2.35rem;
  }

  .btn-cta{
    width:100%;
  }
}

/* PORTAFOLIO WEB */

.portfolio {
  text-align: center;
  padding: 50px 20px;
  background: #ff2a30; /* fondo rojo */
  color: #fff;
  position: relative;
}

.portfolio h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Carrusel */
.portfolio-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.portfolio-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box {
  width: 180px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.logo-box img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

/* Hover */
.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-item:hover .logo-box {
  background: #222;
}

.portfolio-item:hover img {
  filter: brightness(0) invert(1);
}

/* Animación entrada */
.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Flechas */
.carousel-btn {
  width: 50px;       
  height: 50px;      
  border-radius: 50%;   
  background: #fff;
  color: #ff2a30;
  border: none;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: absolute;
  top: 66%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }


/* Desktop: grid */
@media (min-width: 992px) {
  .portfolio-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 35px;
    overflow: visible;
  }
  .carousel-btn { display: none; }
}

.portfolio-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;

  /* Ocultar scrollbar */
  scrollbar-width: none; /* Firefox */
}

.portfolio-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.web-portfolio{
  padding:120px 8%;
  background:#ff2a30;
  position:relative;
  overflow:hidden;
}

/* HEADER */
.web-header{
  text-align:center;
  margin-bottom:70px;
}

.web-header span{
  color:#ff2a30;
  font-size:14px;
  letter-spacing:3px;
  font-weight:700;
}

.web-header h2{
  color:white;
  font-size:55px;
  margin-top:15px;
  margin-bottom:20px;
  font-weight:700;
}

.web-header p{
  color:rgba(255,255,255,.6);
  max-width:700px;
  margin:auto;
  line-height:1.7;
}

/* GRID */
.web-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:40px;
}

/* CARD */
.web-card{
  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  border-radius:28px;

  overflow:hidden;

  backdrop-filter: blur(12px);

  transition:.45s ease;

  position:relative;
}

/* EFECTO PREMIUM */
.web-card::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    transparent
  );

  opacity:0;

  transition:.4s;
}

.web-card:hover::before{
  opacity:1;
}

/* HOVER */
.web-card:hover{
  transform:translateY(-12px);

  border-color:rgba(255,255,255,.2);

  box-shadow:
    0 20px 60px rgba(0,0,0,.4),
    0 0 40px rgba(255,42,48,.15);
}


/* HOVER */
.web-card:hover .web-image img{
  transform:scale(1.08);
  filter:brightness(1.05);
}

/* CONTENT */
.web-content{
  padding:30px;
}

.web-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:20px;
}

.web-tag{
  background:#ffffff;
  color:rgb(255, 0, 0);

  padding:8px 16px;

  border-radius:30px;

  font-size:12px;
  font-weight:600;
}

.web-year{
  color:rgba(255,255,255,.5);
}

.web-content h3{
  color:white;
  font-size:28px;
  margin-bottom:15px;
}

.web-content p{
  color:rgba(255,255,255,.65);
  line-height:1.7;
  margin-bottom:30px;
}

/* BOTÓN */
.web-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  color:white;
  text-decoration:none;

  font-weight:600;

  transition:.3s ease;
}

.web-btn::after{
  content:"→";
  transition:.3s ease;
}

.web-btn:hover{
  color:#000000;
}

.web-btn{
  position:relative;
  z-index:5;
}


.web-btn:hover::after{
  transform:translateX(6px);
}

/* RESPONSIVE */
@media(max-width:768px){

  .web-header h2{
    font-size:38px;
  }

  .web-portfolio{
    padding:90px 6%;
  }

}

.web-image{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:15px;
}

.web-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
}