:root {
  --primary: #1a5f4a;
  --primary-light: #2a8f70;
  --primary-dark: #0f3d2e;
  --primary-pale: #e8f4f1;
  --accent: #d4845f;
  --accent-light: #f0ede9;
  --bg-main: #fafaf8;
  --bg-secondary: #f5f3f1;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --error: #d32f2f;
  --success: #2e7d32;
  --border: #e5e1dd;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.15);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(26,95,74,0.3); }
  50% { box-shadow: 0 0 50px rgba(26,95,74,0.6); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #fafaf8 0%, #f3ede8 50%, #ede5db 100%);
  background-attachment: fixed;
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 25px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(26,95,74,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: fadeInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 65px;
  gap: 15px;
}

.logo {
  max-height: 100px;
  width: auto;
  filter: drop-shadow(0 10px 30px rgba(26,95,74,0.35));
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float 4s ease-in-out infinite;
}

.logo:hover {
  transform: scale(1.15) rotate(2deg);
  filter: drop-shadow(0 15px 50px rgba(26,95,74,0.6));
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 25px;
}

.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  letter-spacing: -0.5px;
  animation: fadeInDown 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0f3d2e 0%, #1a5f4a 35%, #2a8f70 100%);
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,132,95,0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite reverse;
  pointer-events: none;
  will-change: transform;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-content p {
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 8px;
  opacity: 0.95;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-content .subtitle {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  opacity: 0.85;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 0.7s both;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* Info Section */
.info-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: slideInLeft 1s ease-out 0.4s both;
}

.info-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-box:hover {
  background: rgba(26,95,74,0.05);
  transform: translateX(10px);
}

.info-box-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-pale), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(26,95,74,0.2);
  transition: all 0.3s ease;
}

.info-box:hover .info-box-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 25px rgba(26,95,74,0.35);
}

.info-box h3 {
  margin: 0 0 4px;
  color: var(--text-dark);
  font-size: 17px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.info-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.mission-box {
  background: linear-gradient(135deg, var(--primary-pale), rgba(232,244,241,0.5));
  border-left: 5px solid var(--primary);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(26,95,74,0.12);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.mission-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(26,95,74,0.2);
}

.mission-box h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
}

.mission-box p {
  margin: 0;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.8;
}

/* Form Section */
.form-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: 0 20px 60px rgba(26,95,74,0.15);
  border: 1px solid rgba(26,95,74,0.08);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 0.5s both;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
}

h2 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-size: 28px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

.form-section > p {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: 14px;
}

.form-progress {
  height: 4px;
  background: rgba(26,95,74,0.1);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
  width: 0;
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 15px rgba(26,95,74,0.4);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

input, select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: white;
  color: var(--text-dark);
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder {
  color: var(--text-light);
}

input:hover, select:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(26,95,74,0.1);
}

input:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,95,74,0.15);
}

/* Mobile touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
  input, select {
    min-height: 44px;
    font-size: 16px;
  }

  button {
    min-height: 44px;
  }
}

input.invalid {
  border-color: var(--error);
  background-color: rgba(211,47,47,0.03);
}

.phone-input-group {
  display: flex;
  gap: 8px;
}

.phone-prefix {
  width: 100px !important;
  flex-shrink: 0;
}

button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  margin-top: 12px;
  box-shadow: 0 12px 35px rgba(26,95,74,0.35);
  text-transform: uppercase;
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

button:hover::before {
  left: 100%;
}

button:hover:not(:disabled) {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(26,95,74,0.5);
}

button:active:not(:disabled) {
  transform: translateY(-2px) scale(0.98);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.status-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: none;
  font-size: 14px;
  animation: fadeInUp 0.5s ease-out;
}

.status-message.success {
  background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(46,125,50,0.05));
  color: var(--success);
  border: 2px solid var(--success);
}

.status-message.error {
  background: linear-gradient(135deg, rgba(211,47,47,0.1), rgba(211,47,47,0.05));
  color: var(--error);
  border: 2px solid var(--error);
}

.form-footer {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px solid var(--border);
}

.privacy-notice {
  margin: 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.8;
}

.privacy-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.privacy-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.policy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.policy-consent input { margin-top: 3px; }

.policy-consent a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.policy-consent a:hover { text-decoration: underline; }

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f3d2e 0%, #1a5f4a 100%);
  color: white;
  padding: 50px 20px;
  text-align: center;
  margin-top: 100px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212,132,95,0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  word-wrap: break-word;
  position: relative;
  z-index: 1;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 28px;
  right: 28px;
  min-width: 88px;
  height: 48px;
  padding: 8px 12px;
  background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(37,211,102,0.18), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  z-index: 999;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.whatsapp-button:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 30px 80px rgba(37,211,102,0.22);
}

.whatsapp-button .whatsapp-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
}

.whatsapp-button .label {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  opacity: 1;
  transform: none;
  transition: none;
  pointer-events: none;
  margin-left: 4px;
}

.whatsapp-button::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 40%;
  height: 180%;
  background: linear-gradient(120deg, rgba(255,255,255,0.28), rgba(255,255,255,0.02));
  transform: rotate(-25deg) translateX(-120%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.whatsapp-button:hover::before {
  transform: rotate(-25deg) translateX(180%);
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

a[href="https://puntoclick.net/"]:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.12)) !important;
  box-shadow: 0 16px 60px rgba(255,255,255,0.3), inset 0 0 20px rgba(255,255,255,0.1) !important;
  transform: translateY(-4px) scale(1.05) !important;
}

a[href="https://puntoclick.net/"]:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 16px rgba(255,255,255,0.4));
}

@media (max-width: 768px) {
  .whatsapp-button {
    min-width: 50px;
    height: 50px;
    padding: 8px;
  }

  .whatsapp-button .label {
    display: none;
  }

  .whatsapp-button .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 20px;
  }

  .form-section {
    padding: 35px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .phone-input-group {
    flex-direction: column;
  }

  .phone-prefix {
    width: 100% !important;
  }
}

@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .form-section {
    padding: 40px;
  }

  .info-section {
    gap: 24px;
  }

  .form-row {
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 18px 14px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .header-brand {
    gap: 12px;
    order: 1;
    justify-content: center;
  }

  .logo {
    max-height: 80px;
  }

  .brand-title {
    font-size: 24px;
  }

  .hero-section {
    padding: 70px 16px;
  }

  .hero-section::before {
    width: 400px;
    height: 400px;
    top: -25%;
    right: -30%;
  }

  .hero-section::after {
    width: 300px;
    height: 300px;
    bottom: -35%;
    left: -20%;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .hero-content .subtitle {
    font-size: 11px;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 16px;
  }

  .form-section {
    padding: 30px 20px;
  }

  h2 {
    font-size: 24px;
  }

  .form-section > p {
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 18px;
  }

  label {
    font-size: 11px;
    margin-bottom: 6px;
  }

  input, select {
    padding: 12px 14px;
    font-size: 13px;
  }

  button {
    padding: 14px;
    font-size: 13px;
    margin-top: 8px;
  }

  .info-box {
    padding: 16px;
  }

  .info-box h3 {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .info-box p {
    font-size: 12px;
  }

  .info-box-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }

  .mission-box {
    padding: 22px;
  }

  .mission-box h3 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .mission-box p {
    font-size: 13px;
    line-height: 1.6;
  }

  .privacy-notice {
    font-size: 10px;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    min-width: 45px;
    height: 45px;
    padding: 6px;
  }

  .whatsapp-button .whatsapp-icon {
    width: 18px;
    height: 18px;
  }

  .whatsapp-button .label {
    display: none;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 14px 12px;
    gap: 10px;
  }

  .header-brand {
    gap: 10px;
  }

  .logo {
    max-height: 70px;
  }

  .brand-title {
    font-size: 20px;
  }

  .hero-section {
    padding: 50px 14px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .container {
    padding: 40px 14px;
    gap: 25px;
  }

  .form-section {
    padding: 25px 16px;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .form-section > p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .form-row {
    margin-bottom: 18px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  label {
    font-size: 10px;
    margin-bottom: 6px;
  }

  input, select {
    padding: 11px 12px;
    font-size: 12px;
  }

  input::placeholder {
    font-size: 12px;
  }

  button {
    padding: 13px;
    font-size: 12px;
    margin-top: 6px;
    letter-spacing: 0.5px;
  }

  button:hover:not(:disabled) {
    transform: translateY(-4px) scale(1.01);
  }

  .info-box {
    padding: 14px 12px;
    gap: 12px;
  }

  .info-box h3 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .info-box p {
    font-size: 11px;
  }

  .info-box-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .mission-box {
    padding: 18px;
  }

  .mission-box h3 {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .mission-box p {
    font-size: 12px;
    line-height: 1.5;
  }

  .status-message {
    font-size: 12px;
    padding: 12px 16px;
    margin-top: 15px;
  }

  .form-footer {
    margin-top: 20px;
    padding-top: 16px;
  }

  .privacy-notice {
    font-size: 9px;
    line-height: 1.6;
  }

  .whatsapp-button {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 10px;
    flex-direction: column;
    gap: 8px;
  }

  .header-brand {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .logo {
    max-height: 60px;
  }

  .brand-title {
    font-size: 18px;
  }

  .hero-section {
    padding: 40px 12px;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .hero-content .subtitle {
    font-size: 10px;
  }

  .container {
    padding: 30px 12px;
    gap: 20px;
  }

  .form-section {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .form-section::before {
    height: 3px;
  }

  h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .form-section > p {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .form-progress {
    margin-bottom: 20px;
    height: 3px;
  }

  .form-row {
    margin-bottom: 16px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  label {
    font-size: 9px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
  }

  input, select {
    padding: 10px 11px;
    font-size: 11px;
    border-radius: 8px;
  }

  input::placeholder {
    font-size: 11px;
  }

  button {
    padding: 12px;
    font-size: 11px;
    margin-top: 4px;
    letter-spacing: 0.5px;
    border-radius: 8px;
  }

  button:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.005);
  }

  button:active:not(:disabled) {
    transform: translateY(-1px) scale(0.99);
  }

  .info-box {
    padding: 12px 10px;
    gap: 10px;
    margin-bottom: 12px;
  }

  .info-box:hover {
    transform: translateX(6px);
  }

  .info-box h3 {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .info-box p {
    font-size: 10px;
  }

  .info-box-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .info-box:hover .info-box-icon {
    transform: scale(1.1) rotate(8deg);
  }

  .mission-box {
    padding: 16px;
    border-left: 4px solid var(--primary);
  }

  .mission-box h3 {
    font-size: 10px;
    margin-bottom: 6px;
    letter-spacing: 0.8px;
  }

  .mission-box p {
    font-size: 11px;
    line-height: 1.5;
  }

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

  .status-message {
    font-size: 11px;
    padding: 11px 14px;
    margin-top: 12px;
  }

  .form-footer {
    margin-top: 16px;
    padding-top: 12px;
  }

  .privacy-notice {
    font-size: 8px;
    line-height: 1.5;
  }

  .privacy-link {
    font-size: 8px;
  }

  .whatsapp-button {
    min-width: 44px;
    height: 44px;
    padding: 6px;
    bottom: 14px;
    right: 14px;
  }

  .whatsapp-button .whatsapp-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .header-brand {
    flex-direction: column;
    gap: 6px;
  }

  .logo {
    max-height: 50px;
  }

  .brand-title {
    font-size: 16px;
  }

  .hero-section {
    padding: 35px 10px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .container {
    padding: 25px 10px;
  }

  .form-section {
    padding: 18px 12px;
  }

  h2 {
    font-size: 18px;
  }

  input, select {
    padding: 9px 10px;
    font-size: 10px;
  }

  button {
    padding: 11px;
    font-size: 10px;
  }

  .info-box {
    padding: 10px 8px;
  }

  .info-box-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
