/* =========================
   GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
}

/* =========================
   HERO SECTION
========================= */
.adhesion-hero {
  background: linear-gradient(135deg, #0d47a1, #2e7d32);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.adhesion-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.adhesion-hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* =========================
   FORM SECTION
========================= */
.adhesion-section {
  padding: 60px 20px;
}

.adhesion-container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.adhesion-form h2 {
  text-align: center;
  color: #0d47a1;
  margin-bottom: 30px;
  font-size: 28px;
}

/* =========================
   FORM ROWS
========================= */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input {
  flex: 1;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-row input:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 5px rgba(46, 125, 50, 0.4);
}

.adhesion-form input[type="text"],
.adhesion-form input[type="email"],
.adhesion-form input[type="tel"],
.adhesion-form input[type="date"] {
  width: 100%;
}

.adhesion-form select,
.adhesion-form textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  resize: vertical;
  transition: all 0.3s ease;
}

.adhesion-form select:focus,
.adhesion-form textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 5px rgba(46, 125, 50, 0.4);
}

/* =========================
   CHECKBOX + RULES
========================= */
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 25px;
}

.read-values {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}

.read-values a {
  color: #0d47a1;
  text-decoration: underline;
}

.read-values a:hover {
  color: #2e7d32;
}

/* =========================
   SUBMIT BUTTON
========================= */
.adhesion-form button[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 15px;
  background: #2e7d32;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.adhesion-form button[type="submit"]:hover {
  background: #145a32;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .adhesion-hero h1 {
    font-size: 32px;
  }

  .adhesion-hero p {
    font-size: 16px;
  }

  .adhesion-container {
    padding: 30px 20px;
  }
}
