/* Critical CSS for above-the-fold content */
/* This file contains only the most essential styles for initial render */

:root {
  --urbanist: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --primary: #3b82f6;
  --success: #10b981;
  --white: #ffffff;
  --dark: #1f2937;
  --gray: #6b7280;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--urbanist);
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero section - above the fold */
.block-banner-home1 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a 0%, var(--primary) 100%);
  position: relative;
}

/* Critical typography */
h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Critical buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-success {
  background-color: var(--success);
  color: var(--white);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

/* Critical utilities */
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.text-center { text-align: center !important; }
.color-white { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}