/* ============================================
   ACRILICO.CSS - Estilos para Avisos en Acrílico
   ============================================ */

/* HERO SECTION - ACRÍLICO */
.acrilico-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #2e0a1a 100%);
  position: relative;
}

.acrilico-hero .hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(26, 10, 46, 0.7) 40%,
    rgba(46, 10, 26, 0.8) 100%
  );
  animation: gradientShiftAcrilico 8s ease infinite;
  z-index: 1;
}

@keyframes gradientShiftAcrilico {
  0%, 100% {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 10, 46, 0.7) 40%, rgba(46, 10, 26, 0.8) 100%);
  }
  50% {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(46, 10, 26, 0.7) 40%, rgba(26, 10, 46, 0.8) 100%);
  }
}

.acrilico-hero .hero-content {
  z-index: 3;
}

/* MAIN CONTENT */
.acrilico-main {
  background-color: #000;
  color: #fff;
}

/* SECTION BASE */
section {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  font-family: 'Michroma', sans-serif;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a14 100%);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.intro-text {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #ddd;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.highlight-text {
  font-size: 1.2rem;
  padding: 30px;
  background: rgba(0, 240, 255, 0.05);
  border-left: 4px solid var(--accent-cyan);
  border-radius: 8px;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.highlight-text strong {
  color: var(--accent-cyan);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* VALUE PROPS GRID */
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.prop-card {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease both;
}

.prop-card:nth-child(1) { animation-delay: 0.2s; }
.prop-card:nth-child(2) { animation-delay: 0.3s; }
.prop-card:nth-child(3) { animation-delay: 0.4s; }
.prop-card:nth-child(4) { animation-delay: 0.5s; }

.prop-card:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.prop-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--accent-cyan);
  font-family: 'Michroma', sans-serif;
}

.prop-card p {
  color: #bbb;
  line-height: 1.6;
}

/* ============================================
   OBJECTIVE SECTION
   ============================================ */
.objective-section {
  background: linear-gradient(180deg, #1a0a14 0%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.objective-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.objective-item {
  position: relative;
  padding: 40px;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: slideInLeft 0.8s ease both;
}

.objective-item:nth-child(1) { animation-delay: 0.1s; }
.objective-item:nth-child(2) { animation-delay: 0.2s; }
.objective-item:nth-child(3) { animation-delay: 0.3s; }
.objective-item:nth-child(4) { animation-delay: 0.4s; }
.objective-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.objective-item:hover {
  background: rgba(255, 0, 200, 0.08); /* Pink highlight on hover */
  border-color: rgba(255, 0, 200, 0.3);
  transform: translateY(-5px);
}

.objective-item .number {
  display: block;
  font-size: 3.5rem;
  font-weight: bold;
  color: rgba(0, 240, 255, 0.2);
  margin-bottom: 15px;
  font-family: 'Michroma', sans-serif;
}

.objective-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.objective-item p {
  color: #aaa;
  line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a14 100%);
  padding: 80px 40px;
}

.section-intro {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin-bottom: 50px;
  opacity: 0.9;
  font-weight: 300;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: zoomIn 0.8s ease both;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card:nth-child(7) { animation-delay: 0.35s; }
.service-card:nth-child(8) { animation-delay: 0.4s; }
.service-card:nth-child(9) { animation-delay: 0.45s; }
.service-card:nth-child(10) { animation-delay: 0.5s; }
.service-card:nth-child(11) { animation-delay: 0.55s; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  font-family: 'Michroma', sans-serif;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-card li {
  color: #bbb;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.service-goal {
  background: rgba(0, 240, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  color: #ddd;
  font-size: 0.9rem;
  margin-top: 20px;
  border-left: 3px solid var(--accent-cyan);
}

.service-goal strong {
  color: var(--accent-cyan);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
  color: #000;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  background: none;
  -webkit-text-fill-color: unset;
  color: #000;
  margin-bottom: 20px;
  font-size: 3rem;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 300;
}

.btn-large {
  background: #000;
  color: var(--accent-cyan);
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.btn-large:hover {
  background: #1a1a1a;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  section h2 {
    font-size: 2.5rem;
  }

  .value-props,
  .objective-grid,
  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 15px;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 20px;
  }

  .service-icon {
    font-size: 2.5rem;
  }
}
