
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f7fafd;
    color: #333;
}

header.hero {
    background: linear-gradient(rgba(0, 72, 255, 0.7), rgba(0, 72, 255, 0.7)), url('images/Backround.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-button {
    background: #fff;
    color: #0048ff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    color: #0048ff;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

table th, table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.note {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 30px 10px;
    background: #0048ff;
    color: white;
    font-size: 14px;
}


/* Estilos para carrusel */

.carousel-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.carousel-slide {
  display: none;
}

.carousel-slide img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.active {
  background-color: #0048ff;
}
