body, html {
    background-color: #000;
}

h1,h2,h3, body {
    font-family: 'Ruda', 'Courier Prime', monospace;
    color: #fff;
}

p,a,span, ul, li {
    font-family: 'Ruda', 'Courier Prime', monospace;
}

h1 {
    font-size: calc(3rem + 1.5vw);
    text-shadow: 0px 10px 30px #2a242c;
}

h2 {
    font-size: calc(2rem + 1.5vw);
}

h3 {
    font-size: calc(1.325rem + .9vw);
}

.bg-blue {
background-color: #274962;
}

.bg-brown {
background-color: #463e3c;
}

.bg-teal {
background-color: #18827e;
}

.bg-grad-1 {
background: linear-gradient(0deg, rgba(0,189,255,0.05) 0%, rgba(255,255,255,1) 100%);
}

.bg-grad-2 {
background: linear-gradient(0deg, rgba(106,168,79,0.05) 0%, rgba(255,255,255,1) 100%);
}

.bg-grad-3 {
background: linear-gradient(0deg, rgba(71,63,60,0.05) 0%, rgba(255,255,255,1) 100%);
}

hr {
    border-color: #333;
}

.code {
    font-size: calc(5rem + 1.5vw);
    font-weight: 900;
    /* offset-x | offset-y | blur-radius | color */
    text-shadow: 0px 10px 30px #2a242c;
}

.cover {
    background-size: cover;
    box-shadow: 0px 0px 50px rgba(11,30,38,1.0);
}

.circle {
    line-height: 0;		/* remove line-height */
    display: inline-block;	/* circle wraps image */
    margin: 50px 0;
    border: 5px solid #368ea4;
    box-shadow: 0px 10px 50px rgba(11,30,38,1);
    border-radius: 50%;	/* relative value */
    /*box-shadow: 0px 0px 5px rgba(0,0,0,0.4);*/
    transition: linear 0.25s;
}
.circle img {
	border-radius: 50%;	/* relative value for
				   adjustable image size */
}

.pilar {
    padding: 20px;
    border: 1px solid #333;
    transition: linear 0.25s;
    margin-bottom: 30px;
}

.pilar p {
    font-size: calc(0.7rem + 0.5vw)
}

.pilar p strong {
    color: #28a3b6;
}

.pilar ul {
    padding-top: 0;
    text-align: left;
}

.pilar h3 {
    transition: linear 0.25s;
}

.pilar h4 {
    font-size: calc(1rem + 0.3vw);
    margin: 30px 0;
    display: inline-block;
    color: hsl(324, 50%, 70%);
}

.pilar b {
    display: inline-block;
    border: 1px solid #fff;
    padding: 0 6px;
}

.pilar:hover {
    background-color: #1e0f18;
    border-color: #28a3b6;
}

.pilar:hover h3 {
    color: #56f497;
}

footer {
    margin: 120px 0;
}

a {
    display: inline-block;
    border: 1px solid #1e0f18;
    background-color: #000;
    color: #56f497;
    padding: 10px;
    margin: 10px;
    font-size: calc(0.7rem + 0.5vw);
    transition: linear 0.25s;
}

a:hover {
    color: #fff;
    background-color: #28a3b6;
}

.benefits-box {
  background-color: hsl(210, 17%, 8%);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-box ul {
  list-style-type: none;
  padding-left: 0;
}

.benefits-box li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.benefits-box li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
}

.btn-primary {
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}

hr.purple-ray {
  display: block;
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff69b4, transparent);
  filter: drop-shadow(0 0 8px #ff69b4);
  margin: 100px 0;
}

/* Estilos personalizados */
.bg-custom-dark {
    background-color: #121212;
}
.bg-custom-darker {
    background-color: #0a0a0a;
}
.bg-custom-darkest {
    background-color: #060606;
}
.bg-custom-black {
    background-color: #000;
}
.bg-custom-bluedark {
    background-color: rgba(17, 24, 40, 0.5);
}
.text-cyan {
    color: #06b6d4;
}
.bg-cyan {
    background-color: #06b6d4;
}
.btn-cyan {
    background-color: #06b6d4;
    color: #000;
    border: none;
}
.btn-cyan:hover {
    background-color: #0891b2;
    color: #000;
}
.hero-overlay {
    position: relative;
    background: linear-gradient(to bottom, #000, #000);
}
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/api/placeholder/1920/1080');
    opacity: 0.1;
    pointer-events: none;
}
.feature-card {
    background-color: rgba(17, 24, 40, 0.5);
    border-radius: 0.5rem;
    transition: transform 0.2s;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-card .bi-check-circle {
    min-width: 16px;
    min-height: 16px;
    flex-shrink: 0; /* Impede que o ícone encolha */
}

.feature-card li {
    display: flex;
    align-items: flex-start; /* Alinha o ícone com o topo do texto */
    gap: 0.5rem;
}

.btn-outline-cyan {
    color: #06b6d4;
    border-color: #06b6d4;
}

.btn-outline-cyan:hover {
    color: #000;
    background-color: #06b6d4;
    border-color: #06b6d4;
}

.feature-card .collapse {
    transition: all 0.3s ease-out;
}