/*
Theme Name: CEDECAP Theme
Theme URI: https://cedecap.cl
Author: CEDECAP
Author URI: https://cedecap.cl
Description: Tema de WordPress para CEDECAP, Centro de Capacitación Desarrollo y Consultoría en Gestión Empresarial
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cedecap
*/

/* Importación de estilos base */
@import url('assets/css/main.css');

/* Animaciones */
.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-in-out;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Estilos para la sección hero */
.hero-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
}

/* Patrón marítimo */
.maritime-pattern {
  background-color: #f9fafb;
  background-image: url('assets/images/pattern.png');
  background-size: 200px;
  background-repeat: repeat;
  background-blend-mode: overlay;
}

/* Estilos de sección */
.section-padding {
  padding: 6rem 1rem;
}

/* Estilos para smooth scroll */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 1rem;
  }
}