/* Estilos para a pagina de Dicas de Reducao de Custos AWS (V2) */

/* Hero Section */
.hero-v2 {
  background: linear-gradient(135deg, #1a5fb4 0%, #0d47a1 100%);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/pattern.svg');
  opacity: 0.1;
  z-index: 1;
}

.hero-v2 .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-v2 .hero-text {
  flex: 1;
}

.hero-v2 .hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-v2 .hero-title .highlight {
  color: #ff9900;
  position: relative;
  display: inline-block;
}

.hero-v2 .hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff9900;
  border-radius: 2px;
}

.hero-v2 .hero-subtitle {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-v2 .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-v2 .cta-note {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-v2 .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-v2 .hero-icon-large {
  font-size: 10rem;
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.4; }
}

/* Tips Section */
.tips-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.tips-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a5fb4;
}

.tips-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.tip-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #1a5fb4;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tip-card .tip-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.tip-card .tip-number {
  width: 40px;
  height: 40px;
  background: #1a5fb4;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.tip-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a5fb4;
}

.tip-card p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 12px;
}

.tip-card .tip-impact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Quick Wins Section */
.quick-wins {
  padding: 100px 0;
  background: #ffffff;
}

.quick-wins .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a5fb4;
}

.quick-wins .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.quick-wins-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quick-win-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.quick-win-item:hover {
  transform: translateX(5px);
}

.quick-win-item .win-icon {
  width: 50px;
  height: 50px;
  background: #ff9900;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.quick-win-item .win-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a5fb4;
  margin-bottom: 8px;
}

.quick-win-item .win-content p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Checklist Section */
.checklist-section {
  padding: 100px 0;
  background: #f0f4f8;
}

.checklist-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a5fb4;
}

.checklist-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.checklist-item .check-icon {
  color: #4CAF50;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-item span {
  color: #4a5568;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-v2 {
  background: linear-gradient(135deg, #1a5fb4 0%, #0d47a1 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/pattern.svg');
  opacity: 0.1;
}

.cta-v2 .cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-v2 h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-v2 p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-v2 .cta-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 15px;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-v2 .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-v2 .hero-title {
    font-size: 2.8rem;
  }

  .hero-v2 .hero-cta {
    align-items: center;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-v2 {
    padding: 60px 0;
  }

  .hero-v2 .hero-title {
    font-size: 2.2rem;
  }

  .hero-v2 .hero-subtitle {
    font-size: 1.2rem;
  }

  .tips-section .section-title,
  .quick-wins .section-title,
  .checklist-section .section-title,
  .cta-v2 h2 {
    font-size: 2rem;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .quick-win-item {
    flex-direction: column;
    gap: 12px;
  }

  .hero-v2 .hero-icon-large {
    font-size: 6rem;
  }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .tip-card,
  .quick-win-item {
    transition: none;
  }
  .hero-v2 .hero-icon-large {
    animation: none;
  }
}
