@font-face {
    font-family: 'CabinetGrotesk';
    src: url('../fonts/CabinetGrotesk-Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'CabinetGrotesk';
    src: url('../fonts/CabinetGrotesk-Medium.otf') format('opentype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'CabinetGrotesk';
    src: url('../fonts/CabinetGrotesk-Extrabold.otf') format('opentype');
    font-weight: 800;
    font-display: swap;
}

/* =====================================================
   🌐 Estilos globales
===================================================== */
body {
    margin: 0;
    padding: 40px 22px 20px 22px;
    font-family: 'CabinetGrotesk', sans-serif;
    background-color: #ffffff;
}

header {
    width: auto;
    max-height: 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #fff;
}

.logo {
    width: auto;
    height: 45px;
}

/* =====================================================
   🎯 Hero Section — Estilos base
===================================================== */

main {
    width: 100%;
}

.hero-section {
    width: 100%;
    margin: 30px 0px;
    text-align: left;
}

.hero-section .titulo {
    font-size: 3.3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    color: #04153C;
}

.hero-section .subtitulo {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 5px;
    color: #04153C;
    line-height: 1.1;
}


.helper {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    max-height: 20px;
}

.helper #contactos{
    font-size: 14px;
    color: #04153C;
    font-weight: 400;
}

#downward{
    font-size: 14px;
    margin-bottom: 3px;
    color: #04153C;
}

.club-contacts-container {
    display: flex;
    flex-direction: column;   /* 👈 IMPORTANTE */
    justify-content: flex-end; /* 👈 contenido abajo */
    align-items: flex-start;  /* 👈 contenido a la izquierda */

    margin-top: 20px;
    width: 100%;
    height: 65vh;
    background-image: url('../img/airview.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 35px;
}

.titulo-container{
    padding: 0 22px;
}

.titulo{
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 500;
    color: white;
}

.socials-container {
    padding: 0 10px;
    display: flex;
    flex-direction: row; /* opcional, ya es el default */
    gap: 18px;           /* espacio entre los iconos, puedes ajustarlo */
    align-items: center; /* alineación vertical */
    justify-content: flex-end;
}

.whatsapp-container {
    display: flex;
    flex-direction: row; /* opcional, ya es el default */
    gap: 1.5px;           /* espacio entre los iconos, puedes ajustarlo */
    align-items: center; /* alineación vertical */
}

.call-container{
    display: flex;
    flex-direction: row; /* opcional, ya es el default */
    gap: 1.5px;           /* espacio entre los iconos, puedes ajustarlo */
    align-items: center; /* alineación vertical */
}

.instagram-container{
    display: flex;
    flex-direction: row; /* opcional, ya es el default */
    gap: 1.5px;           /* espacio entre los iconos, puedes ajustarlo */
    align-items: center; /* alineación vertical */
}

.contacts-text{
    font-size: 18px;
    color: white;
    text-decoration: underline;
}

#contacts-icon{
    font-size: 16px;
    margin-top: 1px;
    color: white;
}