﻿/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background:#0e0e0e; color:#ddd; }

/* Header */
.header {
  background: #111111c2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 30px;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 2px 5px rgba(0,0,0,0.7);
}
.logo img { height:40px; }
.menu a {
  margin-left:20px; text-decoration:none; color:#ddd; font-weight:500; transition:.3s;
}
.menu a:hover { color:#ffffff; }
.btn {background: #FF5722;color:#000;padding:8px 15px;border-radius:5px;text-decoration:none;font-weight:bold;}
.btn:hover { background:#8e2605; }

/* Hero */
.hero {
  background:url('/frontend/img/index/cs2.gif') center/cover no-repeat;
  min-height:80vh; display:flex; justify-content:center; align-items:center; text-align:center;
  position:relative; color:#fff;
}
.hero::after {
  content:""; position:absolute; top:0; left:0; right:0; bottom:0;
  background:rgba(0,0,0,0.6);
}
.hero-content {
  position:relative; z-index:1; max-width:800px; padding:20px;
}
.hero h1 { font-size:2.9rem; margin-bottom:20px; text-transform:uppercase; }
.hero p { font-size:1.2rem; margin-bottom:30px; }
.btn-hero { font-size:1.2rem; padding:12px 25px; }

/* Sections */
.section { max-width:1100px; margin:auto; padding:60px 20px; }
.section h2 {text-align:center;margin-bottom:30px;color: #FF5722;}
.bg-dark { background:#181818; }

/* Cards */
.cards { display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:20px; }
.card {
  background:#222; padding:20px; border-radius:8px; text-align:center;
  transition:.3s; box-shadow:0 2px 8px rgba(0,0,0,0.6);
}
.card:hover { transform:translateY(-5px); }
.card h3 {margin-bottom:10px;color: #FF5722;}

/* Destaques */
.highlight-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:20px; }
.highlight { background:#111; border-radius:8px; overflow:hidden; text-align:center; box-shadow:0 2px 8px rgba(0,0,0,0.6); }
.highlight img { width:100%; display:block; }
.highlight h3 { padding:15px; color:#fff; }

/* NotÃ­cias */
.news { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:20px; }
.news-item {
  background:#222; padding:20px; border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,0.6);
}
.news-item h3 {margin-bottom:10px;color: #FF5722;}
.news-item a {color: #FF5722;text-decoration:none;}
.news-item a:hover { text-decoration:underline; }


/* Planos */
.plans {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.plan {
  background: #181818;
  border-radius: 8px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.plan:hover {
  transform: translateY(-5px);
}

.plan h3 {
  margin-bottom: 10px;
  color: #FF5722;
}

.price {
  font-size: 1.8rem;
  color: #FF5722;
  margin: 15px 0;
  font-weight: bold;
}

.plan ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  padding: 0;
}

.plan ul li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.plan ul li::before {
  content: "âœ”";
  color: #FF5722;
  position: absolute;
  left: 0;
}

.plan.destaque {
  border: 2px solid #FF5722;
  transform: scale(1.05);
}





/* FAQ */
.faq details {
  margin-bottom:10px; padding:15px;
  border:1px solid #333; border-radius:5px; background:#111;
}
.faq summary {cursor:pointer;font-weight:bold;color: #FF5722;}

/* Footer */
.footer { background:#111; color:#aaa; text-align:center; padding:20px; margin-top:40px; }
.footer a {color: #FF5722;text-decoration:none;}
.footer a:hover { text-decoration:underline; }
/* ===========================
   Contato - FormulÃ¡rio e Layout
=========================== */

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 1rem auto 2rem auto;
  padding: 1.5rem;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #f0f0f0;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: #2a2a2a;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px #ff5722;
  background-color: #333;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background-color: #ff5722;
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
}

/* ===========================
   Layout geral da pÃ¡gina
=========================== */

main.section h1 {
  text-align: center;
  margin-top: 1.5rem;
  color: #ff5722;
}

main.section p {
  text-align: center;
  max-width: 800px;
  margin: 0.5rem auto 2rem auto;
  color: #ddd;
}

main.section h2 {
  margin-top: 1.5rem;
  color: #ff9800;
}

ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

ul li {
  display: inline-block;
  margin: 0 0.8rem;
}

ul li a {
  color: #ff5722;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

ul li a:hover {
  text-decoration: underline;
  color: #e64a19;
}

/* ===========================
   Responsividade
=========================== */

@media screen and (max-width: 768px) {
  .contact-form {
    margin: 1rem;
    padding: 1rem;
  }

  ul li {
    display: block;
    margin: 0.5rem 0;
  }

  main.section h1 {
    font-size: 1.8rem;
  }

  main.section h2 {
    font-size: 1.3rem;
  }
}

