@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #16A085;
  --secondary-color: #2C3D4F;
  --accent-color: #F39C12;
  --light-color: #FEFAE0;
  --dark-color: #2C3D4F;
  --gradient-primary: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
  --hover-color: #117A65;
  --background-color: #FFFFFF;
  --text-color: #34495E;
  --border-color: rgba(22, 160, 133, 0.2);
  --divider-color: rgba(44, 61, 79, 0.1);
  --shadow-color: rgba(44, 61, 79, 0.08);
  --highlight-color: #F1C40F;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Efectos visuales de Neumorfismo ligero y elevaciones */
.feature-card, .testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.btn:hover, button[type="submit"]:hover {
    background-color: var(--hover-color) !important;
    color: var(--light-color) !important;
    box-shadow: 0 5px 15px rgba(22, 160, 133, 0.4);
}

.hover\:underline:hover {
    text-decoration: underline !important;
    color: var(--accent-color) !important;
}

/* Manejo adaptativo sin JS */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .mobile-menu-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .navigation {
        display: none;
        width: 100%;
        margin-top: 25px;
    }
    .navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .navigation ul li {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }
    .navigation ul li a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    #nav-toggle:checked ~ .navigation {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}