/* Variante 2: style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  /* Colors from variant 2 selection: #27AE60, #2C3E50, #E67E22, #BDC3C7 */
  --primary-color: #27AE60;
  --secondary-color: #2C3E50;
  --accent-color: #E67E22;
  --light-color: #BDC3C7;
  --dark-color: #1a252f;
  
  --gradient-primary: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  --hover-color: #1e8449;
  --background-color: #fdfdfd;
  --text-color: #34495e;
  
  --border-color: rgba(39, 174, 96, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(39, 174, 96, 0.15);
  --highlight-color: #F1C40F;
  
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Roboto', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.hover\:underline:hover {
    text-decoration: underline;
}

/* Animations and hover effects */
.feature-item {
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
}

button[type="submit"]:hover {
    background-color: var(--hover-color) !important;
}

/* Mobile Nav without JS */
#mobile-toggle:checked ~ .mobile-nav {
    display: block !important;
}

input:focus, textarea:focus {
    outline: 2px solid var(--primary-color);
}