:root{
    --black: #261001;
    --white : #F0F0F0;
    --box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
  
    justify-content: center;
    align-items: center;
    background: url(images/fondo-cacao.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    font-family: 'Poppins', sans-serif;
    scrollbar-width: none;
    
}
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease; /* Animación de entrada */
    
}

@keyframes fadeIn {
    from {
       
        transform: translateY(30px); /* Se desplaza hacia arriba */
        
    }
    to {
       
        transform: translateY(0); /* Vuelve a su posición normal */
        
    }
}
.submit-icon {
    display: flex;
    align-items: center; /* Alinea verticalmente al centro */
    margin-bottom: -30px; /* Ajusta el margen inferior del contenedor */
    justify-content: space-between; /* Distribuye los elementos de manera uniforme */
}

.submit-icon a:last-child {
    margin-left: auto; /* Alinea el último ícono (el del mapa) a la derecha */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.submit-icon a {
    margin-right: 5px; /* Ajusta el margen derecho del ícono */
    font-size: 24px; /* Tamaño del ícono */
    color: var(--black); /* Color del ícono */
    animation: pulse 1s infinite; /* Agrega la animación de pulsación */
}
 


.contact {
    width: 90%;
    max-width: 400px;
    background:transparent;
    backdrop-filter: blur(15px);
    border: 2px solid #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: var(--black);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.contact h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold !important; /* Aplica el efecto bold al texto con prioridad */
}
.input-box input,
.input-box textarea {
    width: 100%;
    background: #1e0c003b;
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

.input-box input::placeholder,
.input-box textarea::placeholder,
.input-box textarea::placeholder,
.btn {
    font-family: 'Poppins', sans-serif; /* Especifica el tipo de fuente */
    color: rgba(255, 255, 255, 0.957);
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: #a59999;
}

.input-box textarea {
    resize: none;
    height: 150px;

}

.btn {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 30px;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    transition: background-color 0.3s, transform 0.3s; /* Añadimos la transición para el cambio de color de fondo y la transformación */
}

.btn:hover {
    background: #e1e1e1;
}

.btn:active {
    transform: scale(0.95); /* Aplicamos la animación de escala al hacer clic */
}

