/* Omega piqoto Styles - CSS v2.1.4 */

:root {
  --primary-color: #28a745;
  --secondary-color: #ffc107;
  --accent-color: #17a2b8;
  --text-dark: #212529;
  --text-light: #6c757d;
  --gradient-bg: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.z7m1-main-section {
  position: relative;
  z-index: 1;
}

.z7m1-main-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif !important;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
}

p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-gradient {
  background: linear-gradient(135deg, 
    rgba(40, 167, 69, 0.05) 0%, 
    rgba(255, 193, 7, 0.05) 25%,
    rgba(23, 162, 184, 0.05) 50%,
    rgba(108, 117, 125, 0.05) 75%,
    rgba(220, 53, 69, 0.05) 100%);
  position: relative;
}



.navbar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(40, 167, 69, 0.1);
}

.navbar-brand {
  font-size: 1.8rem !important;
  font-weight: 900 !important;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50px !important;
}

.btn-lg {
  padding: 12px 32px;
  font-size: 1.1rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-success {
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
}

.btn-warning {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
  border: none;
  color: #fff !important;
}

.btn-info {
  background: linear-gradient(135deg, #17a2b8, #6f42c1);
  border: none;
}

.btn-danger {
  background: linear-gradient(135deg, #dc3545, #e83e8c);
  border: none;
}

.card {
  transition: all 0.3s ease;
  border-radius: 20px !important;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.card-body {
  padding: 2rem !important;
}

.rounded-3 {
  border-radius: 1rem !important;
}

.rounded-4 {
  border-radius: 1.5rem !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.min-vh-75 {
  min-height: 75vh;
}

.form-control {
  border-radius: 12px !important;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
  transform: translateY(-1px);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-custom {
  background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
}

.position-absolute {
  position: absolute !important;
}

.position-relative {
  position: relative !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

footer {
  background: linear-gradient(135deg, #343a40 0%, #495057 100%);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.cookie-banner {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 3px solid var(--accent-color);
}

@media (max-width: 768px) {
  .z7m1-main-section {
    padding: 40px 0 !important;
  }
  
  .hero-gradient {
    min-height: 90vh;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .btn-lg {
    padding: 10px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .card-body {
    padding: 1rem !important;
  }
  
  .navbar-brand {
    font-size: 1.5rem !important;
  }
}

.overflow-hidden {
  overflow: hidden !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.text-light {
  color: #f8f9fa !important;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f3f4;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1e7e34;
}

.bg-opacity-10 {
  background-color: rgba(var(--bs-warning-rgb), 0.1) !important;
}

@media print {
  .z7m1-main-section {
    page-break-inside: avoid;
  }
  
  .navbar, footer, #cookieConsent {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}

.unused-class {
  background-color: #ff0000;
  display: none;
}

.deprecated-style {
  margin: 25px;
  padding: 15px;
}

.old-button {
  background-color: #007bff;
  color: white;
  border: none;
}

.test-mixed-quotes {
  content: "this is double quoted";
  background: 'single quoted background';
}