body {
    font-family: 'Arial Narrow';
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.5s ease-in-out;
    background: #0d0d0d;
    
}

.cuerpo{
    margin-left: 5%;
    max-width: 90%;
    box-shadow: 0 0 15px rgba(212,175,55,0.1);
    animation: fadeIn 0.3s ease;
    border-radius: 12px;
    background-color: #1f1f1f;
    border: 2px solid rgba(212,175,55,0.2);
}

.titulo{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    font-size: 50px;
    border-bottom: 3px solid #d4af37; 
    padding-bottom: 10px;
    margin: 0;
}

.cuadro1{
    background-color: #141414;
    height: 80px;
    color: #b8962e;
    border-radius: 10px;
    
}

.inicio {
    display: flex;
    flex-direction: row;
    align-items: flex-start; 
    justify-content: space-between;
    padding: 20px;
    gap: 20px; 
}

.izq {
    flex: 1; 
    margin-left: 0;
    margin-right: 0; 
}

.derecha{
    width: 300px; 
    min-width: 300px;
    padding: 20px;
    background-color: #0d0d0d;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(212,175,55,0.1);
    animation: fadeIn 0.3s ease;
    border: 2px solid rgba(212,175,55,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 20px;
    box-sizing: border-box;
    z-index: 10;
    color: #d4af37; 
}
.derecha p {
    margin: 15px 0;
    color: #d4af37; 
    border-bottom: 1px solid #e0e6ed; 
    padding-bottom: 5px;
}

#total {
    font-weight: bold;
    font-size: 24px;
    color: #d4af37;
    border-bottom: none; 
    margin-top: 20px;
}

.gallery-section {
    padding: 80px 40px; 
    background-color: #141414;
    text-align: center;
    transition: background-color 0.5s, color 0.5s;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    max-width: 1500px;
    margin: 40px auto;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item {
    background-color: #141414;
    box-shadow: 0 0 15px rgba(212,175,55,0.1);
    animation: fadeIn 0.3s ease;
    border: 2px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.5s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(var(--negro-profundo), 0.5);
}

.gallery-item img {
    width: 360px;
    height: 200px;
    aspect-ratio: 3/2; 
    display: block;
    object-fit: cover;
}

.gallery-item p {
    text-align: center;
    align-items: center;
    color: #b8962e;
    font-weight: bold;
}

body.dark-scheme .gallery-item {
    border-color: var(--card-highlight); 
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.menus {
    width: 100%;
    text-align: center;
    background-color: #141414;
    color: #d4af37;
    padding: 10px 0;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: .5px solid #d4af37;
}

.botones {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    gap: 5px; 
    box-sizing: border-box;
    padding: 0 5px;
}

.botones button {
    flex: 1;
    min-width: 0;
    padding: 10px 2px;
    
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px; 
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

.botones #fincom{
    background-color: #228B22;
}

.botones #vaccar{
    background-color: #c0392b;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    bottom: 20px;
}


.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%) scale(1.2);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);
    z-index: 1;

}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
}

.stagger-text {
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
}

.stagger-text span:nth-child(1) {
    color: white;
}

.stagger-text span:nth-child(2) {
    color: #00bfff;
}

.stagger-text span:nth-child(3) {
    color: #ff4d4d;
}

.hero-subtext {
    font-size: 20px;
    margin-top: 10px;
}

.btn { padding: 18px 45px; font-size: 1.1em; font-weight: 700; border-radius: 50px; cursor: pointer; transition: all 0.3s ease-in-out; text-transform: uppercase; }

.btn.primary {
    background-color: #FC355C;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(252, 53, 92, 0.6);
}

.btn.primary:hover { background-color: #D31745; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(252, 53, 92, 0.8); }

html{
    scroll-behavior: smooth;
}

.traductor-custom {
    background: #1a1a1a;
    border: 2px solid #00ff41;
    border-radius: 2px;
    padding: 5px;
    display: inline-block;
    box-shadow: 0 0 10px #00ff41;
}

#btn-moneda{
    flex: 1;
    min-width: 0;
    padding: 10px 2px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px; 
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}


/*responsivo
/*Celulares*/
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en celulares/tabletas */
    }
}

@media (max-width: 768px) {
    .inicio {
        flex-direction: column; /* Para abajo*/
    }

    .izq {
        width: 100%;
    }

    .derecha {
        width: 100%;
        position: static;
        margin-top: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr; /* Una columna*/
    }

    .titulo {
        font-size: 30px;
    }
}
@media (max-width: 480px) {
    .stagger-text {
        font-size: 40px;
    }

    .botones {
        flex-wrap: wrap; /* Botones cambian de posicion */
    }

    .botones button {
        flex: 1 1 45%; /* Dos botones por fila */
        font-size: 12px;
        padding: 12px 5px;
    }

    .hero-video {
        width: 200%; 
    }
}

:root {
  --negro: #0d0d0d;
  --griss: #141414;
  --gris-claro: #1f1f1f;
  --dorado: #d4af37;
  --dorado-oscuro: #b8962e;
  --textoo: #f5f5f5;
  --bordee: #333;
}