/*
Theme Name: RadioProNet
Author: TuNombre
Description: Tema WordPress para grupo de radio web + servicios profesionales.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

header, footer {
  background: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

a {
  color: #00aaff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0077cc;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #00aaff, #004466);
  color: white;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {transform: translateY(-20px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

.services {
  padding: 40px 20px;
  text-align: center;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
