html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


html {
    position: relative;
    min-height: 100%;
}

body {
    background-image: url('https://res.cloudinary.com/dutdyxsvb/image/upload/v1760383426/Cancha-Segu_lctskn.png'); /* Ruta de la imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
footer {
    position: absolute; /* Lo saca del flujo normal */
    bottom: 0; /* Lo ancla a la parte inferior del elemento 'html' */
    width: 100%; /* Asegura que ocupe todo el ancho */
    height: 70px; /* Define una altura fija para que 'margin-bottom' de body funcione */
    line-height: 50px; /* Esto ayuda a centrar verticalmente el contenido */
}

.hero-section {
    position: relative;
    color: #000;
}
    .hero-section .container {
        /* Agrega un padding superior al contenedor interno (donde está el texto) */
        padding-top: 150px; /* <--- AJUSTA ESTE VALOR para subirlo o bajarlo */
        /* CAMBIO CLAVE: Aumenta el padding derecho */
        padding-right: 10%; /* <--- Aumenta el 15% para moverlo más a la derecha */
        /* Asegura que el contenedor interno se extienda completamente a la derecha */
        width: 100%;
        /* Es posible que necesites reducir el max-width si se aplica a .container */
        max-width: none;
    }


.hero-section h1 {
    font-size: 2.5rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


.whatsapp-float {
    position: fixed;
    width: 55px; /* ajustá el tamaño total del botón */
    height: 55px;
    bottom: 100px;
    right: 30px;
    color: white;
    font-size: 25px;
    background-color: #25d366;
    border-radius: 50%; /* hace que sea redondo */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 10px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}

    .whatsapp-float:hover {
        
        background: #20b955;
        color: white;
    }

/* Texto blanco siempre para el botón Registrarse */
.btn-success,
.btn-success:visited,
.btn-success:focus {
    color: white !important; 
    text-decoration: none !important; 
}

.btn-success:hover {
    color: white !important; 
}
.hero-section .container {    
    color: #071833 !important;
}
