/* public/app/assets/css/landing_page.css */

/* Reset e Configurações Globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #294344;
  --secondary-color: #445b5c;
  --accent-color: #8AC1C3;
  --accent-hover: #6fa9ab;
  --text-light: #ffffff;
  --text-dark: #294344;
  --gradient-dark: linear-gradient(90deg, #294344 0%, #445b5c 40%, #445b5c 60%, #294344 100%);
  --shadow: 0 10px 30px rgba(41, 67, 68, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--primary-color);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

section {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

/* Slideshow Container */
.slideshow-container {
  position: relative;
  width: 1280px;
  height: 250px;
  margin: 5px auto;
  /* 10px em cima e embaixo, centralizado horizontalmente */
  overflow: hidden;
  display: block;
  border: 1px solid rgb(89, 124, 126);
  /* Moldura suave e discreta */
  border-radius: 6px;
  /* Bordas levemente arredondadas */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* Sombra sutil para destacar */
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Separator Section */
.separator-section {
  background: var(--gradient-dark);
  padding: 0;
  margin: 5px auto;
  height: 90px;
  width: 1280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  position: relative;
}

.separator-title {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 10px;
  color: var(--text-light);
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

/* Video Section */
.video-section {
  padding: 0;
  margin: 5px auto;
  height: 500px;
  width: 1280px;
  background: var(--primary-color);
  display: block;
  position: relative;
  border: 1px solid rgb(89, 124, 126);
  /* Moldura suave e discreta */
  border-radius: 6px;
  /* Bordas levemente arredondadas */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* Sombra sutil */
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Info Split Section */
.info-split-section {
  padding: 0;
  margin: 0 auto;
  height: 450px;
  width: 1280px;
  background: var(--gradient-dark);
  display: block;
  position: relative;
}

.container-split {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}

.panel {
  padding: 1.5rem;
  background: rgba(41, 67, 68, 0.8);
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.panel .main-description {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.panel .sub-description {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.stat-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0.8rem;
  background: rgba(68, 91, 92, 0.5);
  border-radius: 5px;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateX(10px);
}

.stat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-content h3 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--accent-color);
}

.stat-content p {
  font-size: 0.8rem;
  line-height: 1.3;
}

.pulse {
  width: 12px;
  height: 12px;
  background: #00ff00;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Botão Jogar Agora no Painel */
.medical-record-container {
  width: 1280px;
  height: 200px;
  margin: 5px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  position: relative;
  border: 1px solid rgb(89, 124, 126);
  /* Moldura suave e discreta */
  border-radius: 6px;
  /* Bordas levemente arredondadas */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* Sombra sutil */
}

.medical-record-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(41, 67, 68, 0.5);
  animation: pulse 2s infinite;
}

.medical-record-button:hover {
  background: var(--accent-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(41, 67, 68, 0.6);
}

.medical-record-button .button-icon {
  font-size: 1.8rem;
}

/* Play Section */
.pricing-section {
  padding: 0;
  margin: 5px auto;
  height: 90px;
  width: 1280px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pricing-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pricing-container h2 {
  display: none;
}

.pricing-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(41, 67, 68, 0.5);
}

.pricing-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(41, 67, 68, 0.6);
}

.pricing-button .button-icon {
  font-size: 1rem;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .container-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .separator-title {
    font-size: 2.5rem;
    letter-spacing: 5px;
  }
}