/*
Theme Name: My Fast Theme
Theme URI: https://seudominio.com
Author: Seu Nome
Author URI: https://seudominio.com
Description: Tema customizado leve e rápido para WordPress
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: my-fast-theme
*/



.highlight {
  background-color: var(--primary);
  color: white !important;
  padding: 1em;
  border-radius: .4em;
  display: flex;
  flex-direction: column;
  gap: 1em;
	
	--pico-color: white !important;
}

.highlight ul, .highlight ol {
	padding: 0 2em;
}

.highlight > :first-child {
  text-align: center;
	--pico-color: white !important;
}.arch-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.arch-list,
.arch-list > *,
.arch-list a {
  list-style-type: none;
  text-decoration: none;
  color: white;
}

.arch-list > :first-child {
  color: var(--primary);
}

.arch-list .layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
  width: 100%;
  max-width: 900px; /* limite opcional */
}

.arch-list .layout a {
  background-color: var(--primary);
  padding: 1em;
  border-radius: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: opacity 0.2s;
}

.arch-list .layout a:hover {
  opacity: 0.8;
}

:root {
  --primary: #0047ab;
  --text-light: #ffffff;
  --accent: #ffb703;
}

body, html {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.das {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  background: linear-gradient(135deg, var(--primary), #002f73);
  color: var(--text-light);
  padding: 3em 5%;
  border-radius: 1em;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
	--pico-color: white !important;
	margin: 2em 0;
}

.das-content {
  flex: 1 1 350px;
  max-width: 500px;
}

.das-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.4em;
	--pico-color: white !important;
}

.das-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5em;
}

.btn-watch {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.75em 1.5em;
  border-radius: 0.5em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-watch:hover {
  background: #ffc633;
  transform: translateY(-3px);
}

.das-video {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}

.das-video iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border-radius: 0.8em;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Responsivo */
@media (max-width: 768px) {
  .das {
    text-align: center;
  }

  .das-content {
    max-width: 100%;
  }

  .das-video iframe {
    max-width: 100%;
  }
}



