body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)),
              url("Imagenes_rodacenter/Rodacenter1.png"); /* puedes usar tu imagen */
  background-size: cover;
  background-position: center;
  color: var(--blanco);
  text-align: center;
  padding: 80px 20px;
}

.hero_content {
  max-width: 600px;
  margin: 0 auto;
}


.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: var(--dorado);
    color: black;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;

    max-width: 90%;
    text-align: center;
}

.btn:hover {
  background: #eab308;
  transform: scale(1.05);
}
/* SECCIONES */


.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(250, 204, 21, 0.3);
}

/* CARDS */
.card {
  background: var(--blanco);
  padding: 25px;
  border-radius: 16px;
  width: 280px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-align: center;
  transition: all 0.3s ease;
}

/* GALERÍA */
.galeria {
  background: #0b1a2a;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid img {
  width: 100%;
  border-radius: 10px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
}

/* 🔥 contenedor uniforme */
.grid img,
.grid video {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}

.grid img,
.grid video {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid img:hover,
.grid video:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* CTA */
.cta {
  background-color: black;
  color: white;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

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

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  margin: 10px 0;
}


/* 👇 PEGA TODO DESDE AQUÍ HACIA ABAJO */

.cta-secundario {
  text-align: center;
  margin: 30px 0;
}

.cta-secundario a {
  background: #ffd000;
  color: black;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

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

.confianza {
  background: #0b1a2a;
  padding: 60px 20px;
  text-align: center;
}

.confianza h2 {
  color: #d4e157;
  margin-bottom: 30px;
}

.confianza .items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.confianza .items div {
  background: #112b44;
  padding: 20px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
}

.beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}


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

.servicios {
  background-color: #0b1a2a;
}

/* COLORES RODACENTER */
:root {
  --negro: #0f172a;
  --gris-oscuro: #1e293b;
  --dorado: #facc15;
  --blanco: #ffffff;
}

.logo {
  width: 80px;
  margin-bottom: 15px;
}

body {
  background-color: #f1f5f9;
}

section {
  background: #0b1a2d;
  padding: 60px 20px;
  text-align: center;
}

h2 {
  color: #facc15;
  text-align: center;
  margin-bottom: 30px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #000; /* opcional para que se vea elegante */
  border-radius: 10px;
}


.card {
  background: #112b44;
  border: 2px solid #facc15;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.card h3,
.card p {
  color: white;
}

.card {
  text-decoration: none;
}

.card h3 {
  min-height: 70px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.volver {
  display: inline-block;
  margin-top: 30px;
  background: #ffd600;
  color: black;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.volver:hover {
  background: #ffcc00;
}

.cobertura {
  background: #081421;
  text-align: center;
}

.cobertura p {
  color: white;
}

.cobertura ul {
  list-style: none;
  padding: 0;
}

.cobertura li {
  color: #facc15;
  margin: 10px 0;
  font-weight: bold;
}

/* FOOTER */

.footer {
  background: #081421;
  border-top: 2px solid #facc15;
  text-align: center;
  padding: 50px 20px;
}

.footer h3 {
  color: #facc15;
  margin-bottom: 20px;
}

.footer p {
  color: white;
  margin: 10px 0;
}

.copyright {
  color: #94a3b8;
  margin-top: 20px;
  font-size: 0.9rem;
}

.footer {
  background: #050d16;
  border-top: 2px solid #facc15;
  text-align: center;
  padding: 50px 20px;
}

@media (max-width: 768px) {

    .btn {
        font-size: 1rem;
        padding: 16px 20px;
        width: 90%;
        max-width: 350px;
    }

}
