    :root {
      --primary: #111111;
      --secondary: #1d1d1d;
      --accent: #d4a017;
      --accent-soft: #f4d36c;
      --bg: #f7f7f5;
      --white: #ffffff;
      --text: #2c2c2c;
      --text-light: #666666;
      --border: rgba(0, 0, 0, 0.08);
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
      --radius: 22px;
      --radius-sm: 14px;
      --container: 1200px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(180deg, #f7f7f5 0%, #ffffff 100%);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .logo img {
      width: 160px;
      height: auto;
      transition: transform 0.3s ease;
    }

    .logo img:hover {
      transform: scale(1.03);
    }

    .hero {
      min-height: 88vh;
      padding: 140px 24px 80px;
      background:
        linear-gradient(
          120deg,
          rgba(0,0,0,0.85) 10%,
          rgba(0,0,0,0.55) 50%,
          rgba(0,0,0,0.85) 90%
        ),
        url('../images/denuncia.webp') center/cover no-repeat;
      background-attachment: fixed;
      display: flex;
      align-items: center;
    }

    .hero-content {
      max-width: var(--container);
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 36px;
      align-items: center;
    }

    .hero-text h1 {
      font-size: 3.2rem;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 20px;
    }

    .hero-text h1 span {
      color: var(--accent-soft);
    }

    .hero-text p {
      color: rgba(255,255,255,0.88);
      font-size: 1.08rem;
      max-width: 680px;
      margin-bottom: 16px;
    }

    .hero-buttons {
      margin-top: 28px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      padding: 15px 22px;
      border-radius: 999px;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #f0c13c);
      color: #111;
      box-shadow: 0 12px 25px rgba(212,160,23,0.22);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 35px rgba(212,160,23,0.28);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.20);
      color: var(--white);
      background: rgba(255,255,255,0.05);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.12);
    }

    .hero-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: var(--radius);
      padding: 30px;
      backdrop-filter: blur(8px);
      box-shadow: 0 20px 35px rgba(0,0,0,0.18);
      color: var(--white);
    }

    .hero-card h3 {
      color: var(--accent-soft);
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .hero-card ul {
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .hero-card li {
      padding-left: 18px;
      position: relative;
      color: rgba(255,255,255,0.88);
    }

    .hero-card li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--accent-soft);
      font-size: 1.2rem;
      top: -1px;
    }

    .section {
      padding: 90px 24px;
    }

    .section-container {
      max-width: var(--container);
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 18px;
      font-size: 2.3rem;
      color: var(--secondary);
    }

    .section-subtitle {
      text-align: center;
      max-width: 860px;
      margin: 0 auto 48px;
      color: var(--text-light);
      font-size: 1.02rem;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .benefit-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      box-shadow: var(--shadow);
      transition: 0.35s ease;
    }

    .benefit-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 45px rgba(0,0,0,0.12);
    }

    .benefit-card h3 {
      margin-bottom: 12px;
      font-size: 1.2rem;
      color: var(--secondary);
    }

    .benefit-card p {
      color: var(--text-light);
      font-size: 0.97rem;
    }

    .culture-section {
      background:
        linear-gradient(135deg, rgba(17,17,17,0.97), rgba(32,32,32,0.96)),
        url('images/tunel.png') center/cover no-repeat;
      color: var(--white);
    }

    .culture-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 36px;
    }

    .culture-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 20px;
      padding: 28px;
      backdrop-filter: blur(8px);
    }

    .culture-card h3 {
      color: var(--accent-soft);
      margin-bottom: 12px;
      font-size: 1.15rem;
    }

    .culture-card p {
      color: rgba(255,255,255,0.86);
    }

    .form-section {
      background: linear-gradient(180deg, #ffffff 0%, #f8f8f6 100%);
    }

    .form-wrapper {
      max-width: 980px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 38px;
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    label {
      font-weight: 600;
      color: var(--secondary);
      font-size: 0.95rem;
    }

    input,
    select,
    textarea {
      border: 1px solid #d8d8d8;
      border-radius: 14px;
      padding: 14px 16px;
      font-size: 0.98rem;
      font-family: inherit;
      outline: none;
      transition: all 0.3s ease;
      background: #fff;
      color: var(--text);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(212,160,23,0.12);
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    .form-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .submit-btn,
    .back-btn {
      border: none;
      border-radius: 999px;
      padding: 15px 24px;
      font-weight: 700;
      font-size: 0.98rem;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .submit-btn {
      background: linear-gradient(135deg, var(--accent), #f0c13c);
      color: #111;
      box-shadow: 0 12px 25px rgba(212,160,23,0.18);
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 30px rgba(212,160,23,0.26);
    }

    .back-btn {
      background: #efefef;
      color: #222;
    }
.social img{
width:160px;
transition:transform .3s;
}

    .back-btn:hover {
      background: #e2e2e2;
    }

    .copyright {
      margin-top: 18px;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.55);
    }

    @media (max-width: 992px) {
      .hero-content,
      .benefits-grid,
      .culture-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .hero-text h1 {
        font-size: 2.6rem;
      }

      .form-group.full {
        grid-column: auto;
      }
    }


.initialPage{
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("images/dromos-fundo.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}

/* INTRO */

#intro{
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.intro-content{
    max-width: 1100px;
    text-align: center;
}

.logo-container img{
    width: 220px;
    margin-bottom: 25px;
}

.titleSection h1{
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.titleSection p{
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e6e6e6;
}


/* SERVICES */

#services{
    background: white;
    color: #333;
    padding: 70px 40px;
    text-align: center;
}

#services h2{
    font-size: 32px;
    margin-bottom: 50px;
}

.slider-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.service{
    background: white;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.service:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.service img{
    width: 80px;
    margin-bottom: 15px;
}

.service p{
    font-size: 17px;
    font-weight: 600;
}
