/* Estilo para el contenedor de cartas de neumáticos */
.neumaticos-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

/* Estilo para cada carta de neumático */
.neumatico-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 300px;
    margin: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.neumatico-img {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.neumatico-card h3 {
    padding: 10px;
    font-size: 18px;
    color: #333;
}

/* Estilo del formulario */
.cotizacion-form {
    margin-top: 15px;
}

.cotizacion-form label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.cotizacion-form input {
    width: 90%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cotizacion-form input:focus {
    border-color: #25d366;
    outline: none;
}


.layout {
    width: 1366px;
    height: 768px;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 15px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1ebe52;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px; /* Añade un margen entre el icono y el texto */
}

.whatsapp-button:focus {
    outline: 2px solid #25D366;
}

@media (max-width: 768px) {
    .neumatico-card {
        width: 100%;
        margin: 10px 0;
    }
}

