/* ====== ESTILOS GENERALES ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f8;
    color: #333;
}
html {
    scroll-behavior: smooth;
}
.hero{
    width:100%;
    height:380px;
    overflow:hidden;
    position:relative;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.tarjeta{
    transition:0.3s;
}

.tarjeta:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
}
.animado {
  animation: latido 1.5s infinite;
}

@keyframes latido {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ====== ENCABEZADO ====== */
header {
    background: linear-gradient(135deg, #8B0000, #c62828);
    color: white;
    padding: 25px 0;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header p {
    margin: 5px 0 0;
    font-size: 16px;
}
.banner {
  width: 70%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
/* ====== MENÚ DE NAVEGACIÓN ====== */
nav {
    background-color: #1b5e20;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #ffeb3b;
    border-bottom: 2px solid #ffeb3b;
    padding-bottom: 4px;
}

/* ====== CONTENIDO PRINCIPAL ====== */
.contenodor{
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
    }
.contenido {
    width: 85%;
    margin: 40px auto;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
main {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

section {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 6px solid #d70b2d;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    color: #d70b37;
    margin-top: 0;
}

/* ====== LISTAS ====== */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* ====== PIE DE PÁGINA ====== */
footer {
    background-color: #98081b;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
.menu a{
    position:relative;
}

.menu a::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    background:#ffe082;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

.menu a:hover::after{
    width:100%;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
}

nav ul li a:hover {
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
}

/* Secciones */
section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    border-bottom: 3px solid #ccc;
}

section h2 {
    color: #8B0000;
}