/* Estilos generales */
html,
body {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #323232;
    font-family: Helvetica Neue, Helvetica;
    font-size: 14px;
    color: #000;
}

/* Contenedor para los dos contactos */
.contactos {
    display: flex;
    justify-content: center;
    gap: 30px;  /* Espacio entre los contactos */
    padding: 50px;
}

/* Estilo de cada tarjeta de contacto */
.contacto {
    width: 300px; /* Misma anchura que el carrusel */
    height: 500px; /* Misma altura que el carrusel */
    background-color: #323232;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    color: white;
}

/* Estilo de los íconos en la parte superior */
.icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.icons i {
    font-size: 20px;
    color: #ffb900;
}

.icons img {
    width: 120px;  /* Tamaño del logo igual al original */
}

/* Contenido del contacto */
.product-content {
    display: flex;
    justify-content: space-between;
}

.product-txt {
    flex-basis: 50%;
    text-align: left;
}

.product-txt span {
    font-size: 25px;
    color: #ffb900;
    font-weight: bold;
}

.product-txt h3 {
    font-size: 20px;
    color: aliceblue;
    text-transform: uppercase;
}

.product-txt p {
    font-size: 14px;
    color: #c4c4c4;
}

.product-img {
    flex-basis: 50%;
    text-align: right;
}

.product-img img {
    width: 120px;  /* Tamaño de la imagen igual al original */
}

/* Botón de información */
.btn-3 {
    display: inline-block;
    padding: 13px 55px;
    border: 1px solid #ffb900;
    border-radius: 25px;
    color: #ffb900;
    text-decoration: none;
    margin-top: 50px;
}

/* Responsividad */
@media (max-width: 768px) {
    .contacto {
        width: 250px;
        height: 400px;
    }

    .product-img img {
        width: 100px;
        height: 100px;
    }

    .btn-3 {
        font-size: 14px;
    }
}


